ARTICLE DETAIL

建站实战干货

来自一线的建站与推广经验沉淀,每一条都经过真实交付验证。

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

2026/8/2 14:28:28 拓冰建站 浏览量
微信小程序获取来源场景值

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