通过微信扫一扫进入小程序 二维码要携带多个参数,用scene 怎么模拟!!!
scene的值个对象,还是个字符串
多个参数的到底是怎么解决啊? 比如 scene: 'id=99,type=1,num=2’我要识别的话 是直接 var scene = decodeURIComponent(options.scene); 然后在scene.id scene.type, scene.num 吗?
if (!$.isEmpty(options.scene)){
var scene = decodeURIComponent(options.scene);
if (!$.isEmpty(scene)) {
var info_arr = [];
info_arr = scene.split(’,’)
var bussinId = info_arr[0];
var tableNums = info_arr[1];
var appIde = info_arr[2];
app.globalData.bussinId = bussinId;
app.globalData.tableNums = tableNums;