uni-app编译qq小程序订阅消息该用哪个接口没有看到subscribeAppMsg而requestSubscribeMessage不支持qq
uni-app编译qq小程序订阅消息该用哪个接口没有看到subscribeAppMsg而requestSubscribeMessage不支持qq
https://zh.uniapp.dcloud.io/api/other/requestSubscribeMessage.html
1 回复
更多关于uni-app编译qq小程序订阅消息该用哪个接口没有看到subscribeAppMsg而requestSubscribeMessage不支持qq的实战教程也可以访问 https://www.itying.com/category-93-b0.html
在uni-app中,QQ小程序订阅消息确实比较特殊。QQ小程序不支持微信的subscribeAppMsg
和requestSubscribeMessage
接口,而是有自己的实现方式。
QQ小程序需要使用qq.subscribeAppMsg
接口来实现订阅消息功能。在uni-app中可以通过条件编译来调用这个API:
// #ifdef MP-QQ
qq.subscribeAppMsg({
subscribeId: '你的模板ID',
complete(res) {
console.log(res);
}
})
// #endif