- wx-open-launch-app打开报错 launch fail? 找不到报错原因
wx-open-launch-app 配置正常且能唤起弹窗 安卓点击确认后报错 launch -fail ,从开发工具预览也试了 分享也试了都打不开,但在安卓端卸载app后 会报确认app是否卸载, 个人感觉是安卓端的配置opensdk问题 但是ios端不需要配置opensdk 也是点了没有反应
03-28 - wx.requestSubscribeMessage真机安卓不管点击允许取消返回都是reject?
订阅消息 如题 ios真机调试正常 安卓异常。。。。 代码片段 try { Taro.requestSubscribeMessage({ tmplIds: ["xxx"], success: (res) => { const orderValue = res["xxx"]; console.log(res,"订阅结果的打印") if (orderValue === "reject") { that.sendNotify(); return; } if ( orderValue === "accept" && res.errMsg === "requestSubscribeMessage:ok" ) { showToast({ title: `订阅成功`, }); that.sendNotify(); return; } showToast({ title: `订阅失败`, }); }, fail: (err) => { console.log(err) that.sendNotify(); // showToast({ // title: `订阅失败`, // }); }, }); } catch (err) { console.log(err) }
2022-07-04