收藏
回答

为什么我的订阅消息弹窗是这个样子?

如图:

不应该是酱紫嘛

我的代码:

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({
              isShowSetModeltrue
            })
          } else {
            wx.showToast({
              title'出错了!',
              icon'error'
            })
          }
        }
      })
    } else {
      wx.showToast({
        title'请更新最新微信版本',
        icon'error'
      })
    }
  },

欢迎各路神仙指点,我是第一次用订阅消息

回答关注问题邀请回答
收藏

1 个回答

  • Hlxuan.
    Hlxuan.
    2023-09-11

    开发者工具上面显示图一那样,真机就是图二那样,以真机为准。

    2023-09-11
    有用
    回复 1
    • 384400Kilometres
      384400Kilometres
      2023-09-11
      是这样子噢!谢了
      2023-09-11
      回复
登录 后发表内容