小程序扫描小程序码进入页面获取参数scene

onLoad: function (options) { 
	if (options.scene) { 
	//扫描普通链接进入小程序,并获取参数
		const scene = decodeURIComponent(options.scene);
		console.log(scene);//a="123,123"
		let a = scene.slice(2);
		let arr=a.split(",");
		// console.log(arr);[123,123]
		// console.log(a);//"123,123"
	}else{ 
	//普通链接进入
	}
}
    原文作者:萨摩敲代码
    原文地址: https://blog.csdn.net/muzidanwu/article/details/106791574
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞