以前我扫码能获取二维码的数据,返回二维码中的值,今天怎么就不行了,console.log(this.options.q)为undefined?,请大家指导一下!谢谢!
onLoad: function () {
if (this.options.q) {
let scan_url = decodeURIComponent(this.options.q);//获取二维码的字符串
var id=scan_url.match(/\d+/);//截取以上字符串的数字部分,即id
this.setData({
ccbh:id
})
this.checkBtn(id);
}
console.log(this.options.q);
},
this.options 哪里来的?????代码哪里复制的?