如图:
不应该是酱紫嘛
我的代码:
onSubscribe: function (e) {
const msgId = /*手动隐藏*/;
const index = e.currentTarget.dataset.index;
let that = this;
if(wx.requestSubscribeMessage) {
wx.requestSubscribeMessage({
tmplIds: [msgId],
success(res) {
if(res[msgId] === 'accept') {
that.setData({
['activity.arrange[' + index + '].subscribe']: true
})
} else if (res[msgId] === 'reject') {
that.setData({
['activity.arrange[' + index + '].subscribe']: false
})
} else {
wx.showToast({
title: '授权订阅消息有误',
icon: 'error'
})
}
},
fail(res) {
if (res.errCode == 20004) {
that.setData({
isShowSetModel: true
})
} else {
wx.showToast({
title: '出错了!',
icon: 'error'
})
}
}
})
} else {
wx.showToast({
title: '请更新最新微信版本',
icon: 'error'
})
}
},
欢迎各路神仙指点,我是第一次用订阅消息
开发者工具上面显示图一那样,真机就是图二那样,以真机为准。