本文主要介绍扫普通链接二维码打开小程序,
详情请看官方文档https://mp.weixin.qq.com/debug/wxadoc/introduction/qrcode.html
配置普通链接二维码规则
生成二维码
访问https://cli.im/url,将https://test.com/linkcode?id=1_2生成二维码图片
小程序接收参数
if(option.q){
console.log(option.q);
var link = decodeURIComponent(option.q);
console.log(link);
var paramArr = link.split('=');
if (paramArr.length == 2){
var params = paramArr[1].split('_');
console.log(params[0]);
console.log(params[1]);
}
}
这里使用1_2是指用来接受多参数,然后手动处理得到