小程序动态设置标题bug
[图片][图片] 在首页一个接口中返回数据中动态设置的标题,假如过快点击推荐的话,推荐页面标题默认(视频推荐)标题,就会被替换成首页一样的标题,有什么解决办法吗, index.js 接口返回数据
if (res.data.Success == 'true' && res.data.ErrorCode == '0') {
this.setData({
pwStatue: false,
videoBaseInfo: data
})
console.log(this.data.videoBaseInfo)
wx.setNavigationBarTitle({
title: this.data.videoBaseInfo.video_name,
})
} else {
wx.showToast({
title: '视频信息请求失败',
icon: "none"
})
}
推荐页面配置json { "navigationBarTitleText": "视频推荐" }