小程序获得场景值

获取场景值

对于小程序,可以在 App 的 onLaunch 和 onShow,或wx.getLaunchOptionsSync 中获取上述场景值

wx.getLaunchOptionsSync().scene;

App({
    onLaunch: function (options) {
        console.log(options.scene)
    },
    onShow: function (options) {
        console.log( options.scene)
    }
})

场景值ID以及说明
场景值列表

如果有什么需要进一步了解的欢迎来评

你可能感兴趣的:(小程序,小程序,微信小程序)