首页不能获取到scene
index/index:
Page({
onLoad(op) {
console.log(op.scene)
}
})
二维码生成接口: https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=ACCESS_TOKEN
参数如下:
{
"is_hyaline": true,
"auto_color": true,
"width": 250,
"path": "pages/index/index",
"scene": "756172fb1c054804a4a0344417de7e73"
}
进入生产首页时,无法取到scene,请问这是什么原因?
1 回复
如果是通过扫码进入的页面,需要通过这个来获取二维码的参数的
// options 中的 scene 需要使用 decodeURIComponent 才能获取到生成二维码时传入的 scene
var scene = decodeURIComponent(options.scene)
https://developers.weixin.qq.com/miniprogram/dev/api/qrcode.html?search-key=decodeURIComponent