赞
踩
有个要识别二维码页面跳转的功能,想着怎么样模拟识别二维码呢,用开发工具扫描二维码应该不可能,如果是用手机扫,那么,怎么让手机跳转到我的开发代码中,而不是我发布的代码小程序中呢?
通过二维码编译 启动小程序,然后运行的代码就是当前开发的代码
传递的参数,特殊字符需要通过
decodeURIComponent
函数转码
// 获取扫描二维码传递过来的参数
onLoad(query) {
console.log(query);
// 传递的参数需要转码
const scene = decodeURIComponent(query.scene);
console.log(scene);
this.qrcodeParam = scene;
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。