小程序需带参数跳转

1、需要生成二维码的数据

直接在浏览器中替换成自己的appid,secret及可生成一个access_token

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wxxxxx&secret=xxxxx

用access_token

https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=xxxxxx

小程序需带参数跳转_第1张图片
小程序需带参数跳转_第2张图片

https://blog.csdn.net/weixin_45792959/article/details/125639166
报错注意

在小程序中如果模拟扫描带参数的二维码
小程序需带参数跳转_第3张图片小程序需带参数跳转_第4张图片
在onload中直接打印出来即可

async onLoad(options) {
  
    console.log("启动参数", options);
    spotId=options.spot;
    console.log("打印本次扫描的内容"+spotId)

你可能感兴趣的:(小程序)