订阅消息
如题 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)
}
怀疑是语音消息提醒的问题