小程序
小游戏
企业微信
微信支付
扫描小程序码分享
getwxacodeunlimit 这个接口我传了scene,但是小程序那边接收不到
二维码生成出来了,但是query.scene 根本没有scene这个参数
不能再开发者工具上面用二维码识别进去看?
query.scene这个参数必须要再app.js里面才能获取到,还是指定页面也能获取到?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
小程序是对应页面的 onLoad里取哦
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
{
"errcode": 47001,
"errmsg": "data format error rid: 61c13969-1233cb4a-031ed488"
}
我也遇到了这个问题了,请问后来发现原因了吗?该如何处理
app.js的 onLaunch以及onShow里获取
onLaunch(options) { console.log(options, 'onLaunch') this.globalData.query = options.query || {} if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { console.log(options, 'onShow') if (options.query) { // 解决连续扫两次带参数的码,参数丢失的问题 this.globalData.query = options.query || {} // 处理通过小程序码进来的参数,包括渠道码等,放置到全局数据中 if (options.query.scene) { let queryObj = {} var strs = decodeURIComponent(options.query.scene).split('&') //以&分割 for (var i = 0; i < strs.length; i++) { queryObj[strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]) } Object.assign(this.globalData.query, queryObj) } } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, globalData: { query: {} }
页面:
onLoad(options) { this.setData({ xxx: options.xxx || app.globalData.query.xxx || '' }) }
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
小程序是对应页面的 onLoad里取哦
不是已上线页面你把这个参数看下
{
"errcode": 47001,
"errmsg": "data format error rid: 61c13969-1233cb4a-031ed488"
}
我也遇到了这个问题了,请问后来发现原因了吗?该如何处理
app.js的 onLaunch以及onShow里获取
onLaunch(options) { console.log(options, 'onLaunch') this.globalData.query = options.query || {} if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { console.log(options, 'onShow') if (options.query) { // 解决连续扫两次带参数的码,参数丢失的问题 this.globalData.query = options.query || {} // 处理通过小程序码进来的参数,包括渠道码等,放置到全局数据中 if (options.query.scene) { let queryObj = {} var strs = decodeURIComponent(options.query.scene).split('&') //以&分割 for (var i = 0; i < strs.length; i++) { queryObj[strs[i].split('=')[0]] = unescape(strs[i].split('=')[1]) } Object.assign(this.globalData.query, queryObj) } } if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, globalData: { query: {} }
页面:
onLoad(options) { this.setData({ xxx: options.xxx || app.globalData.query.xxx || '' }) }