swan.setNavigationBarTitle

解释:动态设置当前页面的标题。

方法参数

Object object

object参数说明

属性名类型必填默认值说明
titleString页面标题
successFunction接口调用成功的回调函数
failFunction接口调用失败的回调函数
completeFunction接口调用结束的回调函数(调用成功、失败都会执行)

示例

在开发者工具中预览效果

扫码体验

swan.setNavigationBarTitle - 图1请使用百度APP扫码

代码示例

  1. <view class="container">
  2. <view class="card-area">
  3. <input bind:input="titleInput" class="input border-bottom" type="text" placeholder="请输入页面标题并点击设置即可"/>
  4. <button bind:tap="setNavigationBarTitle" type="primary" hover-stop-propagation="true">设置</button>
  5. </view>
  6. </view>
  1. Page({
  2. data: {
  3. newTitle: ''
  4. },
  5. titleInput(e) {
  6. this.setData('newTitle', e.detail.value);
  7. },
  8. setNavigationBarTitle(e) {
  9. let newTitle = this.getData('newTitle');
  10. if (!newTitle) {
  11. swan.showToast({
  12. title: '请输入标题'
  13. });
  14. return;
  15. }
  16. swan.setNavigationBarTitle({
  17. title: newTitle
  18. });
  19. }
  20. });

错误码

Android

错误码说明
1001执行失败

iOS

错误码说明
202解析失败,请检查参数是否正确