image.png开发文档:https://developers.weixin.qq.com/miniprogram/introduction/qrcode.html
在跳转过来的页面onLoad里面接收参数,会以参数q传过来完整路径。
onLoad: function(options) {
if (options.q) { // pc扫码过来
let url = decodeURIComponent(options.q) // 会以参数q传过来完整参数,用decodeURIComponent解码一下,
//例:http://jobtrain.test.dc-it.cn?live_id=36&live_status=3
let data = url.split('=')
let live_id = data[1].split('&')[0]
let live_status = data[2]
this.setData({
live_id,
live_status
})
}
}
网友评论