扫描小程序码分享
在App端支付时需要跳转小程序支付并将订单号传过来 path: "/pages/purchaser/adapay/adapay?orderNum=" + this.orderNum + '&TOKEN=' + token, 可以正常跳转 参数也正常传过来了, 但是在小程序不知道怎么接收,是要在adapay页面的onLoad接收吗
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// app.js onLaunch(options) { console.log('onLaunch', options) this.globalData.query = options.query || {} if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { console.log('onShow', options) if (Object.keys(options.query).length > 0) { // 解决连续扫两次带参数的码,参数丢失的问题 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: {} }
// 页面js onLoad(options) { this.setData({ 参数名: options.参数名 || app.globalData.query.参数名 || '' }) }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
是的
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// app.js onLaunch(options) { console.log('onLaunch', options) this.globalData.query = options.query || {} if (options.referrerInfo) { this.globalData.query = Object.assign(this.globalData.query, options.referrerInfo.extraData) } }, onShow(options) { console.log('onShow', options) if (Object.keys(options.query).length > 0) { // 解决连续扫两次带参数的码,参数丢失的问题 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: {} }
// 页面js onLoad(options) { this.setData({ 参数名: options.参数名 || app.globalData.query.参数名 || '' }) }
是的