参考微信文档:https://developers.weixin.qq.com/miniprogram/introduction/qrcode.html#%E5%8A%9F%E8%83%BD%E4%BB%8B%E7%BB%8D
1、(个人主体小程序不支持)
2、配置规则
3、链接获取参数 上面两步配置好,其实就可以正常扫描二维码进入到小程序里了,但是有一些参数要获取;比如https://xxx..com?type=1&name=sign; 因为小程序扫码进去是可以在onLoad这个方法里面获取到对应信息的,所以就直接上代码。
onLoad(option) {
//这里是直接获取到二维码原生链接:即http://www.baidu.com/code/?id=xxx&name=xxx
const url = decodeURIComponent(option.q)
let res = {}
//下面这个方法是方便收集成对象做的工具类
const query = (url.split('?')[1] || '').trim().replace(/^(\?|#|&)/, '')
if (!query) {
return res
}
query.split('&').forEach(param => {
const parts = param.replace(/\+/g, ' ').split('=')
const key = decodeURIComponent(parts.shift())
const val = parts.length > 0 ? decodeURIComponent(parts.join('=')) : null
if (res[key] === undefined) {
res[key] = val
} else if (Array.isArray(res[key])) {
res[key].push(val)
} else {
res[key] = [res[key], val]
}
})
//这里就可以去定义了
this.type = res.type
this.name = res.name
}
注:1、完成添加并发布后需大约5-10分钟左右生效期链接才可跳转至小程序,前期微信扫码可能跳转网站而不是小程序。
2、二维码测试跳转开发版或体验版时,需在后台配置固定测试链接才可跳转,未匹配到测试链接则自动跳往线上版本。