小程序
小游戏
企业微信
微信支付
扫描小程序码分享
一个微信小程序跳转到另一个微信小程序 用hbuilderx写的微信小程序如何接收到extraData参数?
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// app.js onLaunch(options) { if (options.query) { this.globalData.query = options.query } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { if (options.query) { this.globalData.query = options.query } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, globalData: { query: {} }
// 页面js使用 onLoad(options) { this.setData({ xxx: options.xxx || app.globalData.query.xxx || '' }) }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
有一个小坑是 如果开发版跳开发版 需要保证两边代码都要 预览上传 扫码运行 最新的小程序才可以 如果是体验版要把最新代码上传到体验版再进行测试
App({ onLaunch(options) { console.log(options) }, onShow(options) { console.log(options) } })
如何清除extraData里面的数据,每次打开都是一样的数据
跳转小程序版本是否正确
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// app.js onLaunch(options) { if (options.query) { this.globalData.query = options.query } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { if (options.query) { this.globalData.query = options.query } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, globalData: { query: {} }
// 页面js使用 onLoad(options) { this.setData({ xxx: options.xxx || app.globalData.query.xxx || '' }) }
有一个小坑是 如果开发版跳开发版 需要保证两边代码都要 预览上传 扫码运行 最新的小程序才可以 如果是体验版要把最新代码上传到体验版再进行测试
App({ onLaunch(options) { console.log(options) }, onShow(options) { console.log(options) } })
如何清除extraData里面的数据,每次打开都是一样的数据
跳转小程序版本是否正确