在 微信公众平台 - 开发管理 - 开发设置 - 扫普通链接二维码打开小程序 中,配置相应参数。可以跳转到给定页面,但是参数无法携带。
主要就是针对这两个参数了:
我想生成的地址为 https://www.example.com/qrtest,要跳转的页面为 pages/dir/page,要携带的参数为 id=abcdefg、type=3。主要问题还是如何动态匹配参数吧,已经尝试了如下组合,均无法达到目的,不是打开空白(404),就是传参无法识别:
1.二维码规则:https://www.example.com/qrtest
测试链接:https://www.example.com/qrtest?id=abcdefg&type=3
2. 二维码规则:https://www.example.com/qrtest/
测试链接:https://www.example.com/qrtest/?id=abcdefg&type=3(加了 /)
3. 二维码规则:https://www.example.com/qrtest/?id=abcdefg&type=3
测试链接:https://www.example.com/qrtest/?id=abcdefg&type=3(两边写同一个)
4.二维码规则:https://www.example.com/qrtest?id=abcdefg
测试链接:https://www.example.com/qrtest?id=abcdefg&type=3(规则中添加了部分参数)
5.二维码规则:https://www.example.com/qrtest/?id=abcdefg
测试链接:https://www.example.com/qrtest/?id=abcdefg&type=3(加了 /,规则中添加了部分参数)
还望各位大虾指教,感谢!
规则填https://www.example.com/qrtest?id=,测试填https://www.example.com/qrtest?id=abcdefg-3,取值分割-符号