赞
踩
一、生成二维码
1、获取appid,appsecret,利用工具:
https://mp.weixin.qq.com/debug/
获取access_token
2、利用接口产生二维码
https://developers.weixin.qq.com/miniprogram/dev/api/qrcode.html
可以利用postman来进行:
3、接收页面的代码
onLoad(options) {
if (options.scene) {
console.log("has scene");
var scene = decodeURIComponent(options.scene);
console.log("scene is ", scene);
var arrPara = scene.split("&");
var arr = [];
for (var i in arrPara) {
arr = arrPara[i].split("=");
wx.setStorageSync(arr[0],arr[1]);
console.log("setStorageSync:",arr[0],"=",arr[1]);
}
} else {
console.log("no scene");
}
},
4、开发阶段的测试
因为要发布有线上的代码,并且配置的path也在线上的版本中有配置才能真正使用,那测试阶段如何操作?
用开发者工具进行模拟:
这个是自定义的,模式名称是自己起的,启动页面,设为自己想要的,启动参数key为secne,value是经过encodeURIComponent编码的(因为在调用接口的时候,这些值也是会被encode处理,在接收的页面处理中,统一用decoce恢复),进入场景不知道有多大作用,这里选扫描小程序码或者扫描二维码都行。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。