- 有用户点击事件 但是订阅消息失败 是哪里出的问题?
以下是步骤 1 ... <button class='storeButton' @click="storeButtonClick">确认并支付</button> ... 2 // 确认餐厅 storeButtonClick() { this.storeClose() this.payBefore() } 3 // 支付调用 payBefore: function () { ... // 参数的处理 saveOrder(params).then(res => { ... this.saveOrderAfter() ... }) }, 4 因为会员是用积分支付 完成后直接订阅 没有走微信支付回调 (微信支付里面的订阅是没问题的) saveOrderAfter() { ... if(积分支付){ this.requestSubscribeMessageHandel() }else{// 微信支付 uni.requestPayment({ provider: 'wxpay', ...payParamJson, success: res => { ... this.requestSubscribeMessageHandel() }, fail: () => { ... }, }) } }, 5 requestSubscribeMessageHandel(){ let subscribeMessageTmplId = [ "*********", // 下单成功提醒 '*********' // 取餐提醒 ]; // 如果是取餐柜 添加入柜提醒 if(this.isFoodDrawer == 1 && this.mealStyle == 2){ subscribeMessageTmplId.push('*********') } console.log('subscribeMessageTmplId',subscribeMessageTmplId) wx.requestSubscribeMessage({ tmplIds: subscribeMessageTmplId, success(res) { console.log('订阅成功', res); }, fail(err) { console.log('订阅失败', err); }, complete() { uni.navigateTo({ url: '/subPackage/orderResult/success'}) } }) }, 所以是哪里出的问题。。。。
2022-01-19 - wx.previewImage 部分安卓预览图片识别二维码 跳出小程序后 回到小程序再次预览失败
// 点击预览 直接扫码 mpvue.previewImage({ current: this.qrcodeUrl, // 当前显示图片的http链接 urls:[this.qrcodeUrl] }) 手机设备 onePlus 6T 安卓9 复现: 1.页面中点击图片调用api预览 2.长按预览图片识别二维码 3.识别二维码跳出调程序 4.通过微信回到小程序 5.再次点击图片进行预览 6.这时预览组件会闪一下并消失(有时需要重复1-5步骤才会出现) 提示: 闪一下并消失后 只是看不见预览图片 但还能进行长按并且识别二维码和跳转
2021-09-03 - 华为p30 微信浏览器内页面 监听不到onpopstate
页面监听返回事件 onpopstate 但是页面在打开时 没有任何操作 直接返回 回调没有执行 就直接退出了微信浏览器 如果用户点击了页面 监听就正常了
2020-05-27