编程大白的博客

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

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
   })
 }
},
« Previous

实战营|阿里云 x StarRocks 邀你现场体验云上极速湖仓--深圳站

Next »

2024最新面试经验分享

© 2024 编程大白的博客. Generated with Hugo and Mainroad theme.