微信小程序获取来源场景值

发布时间:2024年01月11日

https://developers.weixin.qq.com/miniprogram/dev/framework/app-service/scene.html#返回来源信息的场景
https://developers.weixin.qq.com/miniprogram/dev/api/base/app/life-cycle/wx.getLaunchOptionsSync.html
场景值列表

只有1008是来源群聊

/**
* 生命周期函数--监听页面显示
*/
onShow() {
 const launchOps = wx.getLaunchOptionsSync();
 console.error(launchOps);
 if (launchOps.scene === 1008) {
   this.setData({
     isFromGroup: true
   })
 }
},
文章来源:https://blog.csdn.net/qq_36437991/article/details/135532973
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。