- 微信订阅消息用户第一次拒绝了且永久不提示,之后就再也不弹了,如何再次唤醒提示呢?
wx.requestSubscribeMessage({ tmplIds: config.templateIds, success: (res) => { console.log(res); if (res[config.templateIds] == 'reject') { wx.showModal({ title: '温馨提示', content: "您已关闭消息推送,如需要消息推送服务,请点击确定跳转设置页面打开授权后再次尝试。", success: function(modal) { if (modal.confirm) { wx.openSetting({ withSubscriptions: true }) } } }) } }, fail: res => { console.log("fail:", res); if (res.errCode == '20004') { wx.showModal({ title: '温馨提示', content: "您的消息订阅主开关已关闭,如需要消息推送服务,请点击确定跳转设置页面打开授权后再次尝试。", success: function(modal) { if (modal.confirm) { // 点击确定 wx.openSetting({ withSubscriptions: true }) } } }) } }, complete: res => { } });
2023-04-03 - 微信订阅消息逻辑是如何推送的?
1、订阅消息经常不弹窗起来 2、重复订阅会有什么问题呢 3、经常收不到推送消息 4、频繁推送会导致接收不到消息吗 5、比如说今天订阅,一周后推送可以接收到消息吗 wx.requestSubscribeMessage({ tmplIds: config.templateIds, complete: res => { } });
2023-03-31 - HEVC 部分手机播放是黑屏,有没有知道是什么原因呢?
https://developers.weixin.qq.com/miniprogram/dev/component/video.html
2020-07-16 - 自定义组件不能嵌套已有组件?
自定义一个components,不能嵌套 view等已有的组件吗??
2018-07-09 - iPhone中的字体样式
iPhone里面修改任何字体样式都没有变化,Android都有效果,不知道是不是小程序没有提供接口?
2018-06-27 - 小程序发布后,还可以修改头像吗?
- 需求的场景描述(希望解决的问题) - 希望提供的能力 小程序发布后,还可以修改头像吗?
2018-05-21