您现在的位置是:网站首页> 小程序设计
uni-app获取小程序带参
- 小程序设计
- 2021-05-29
- 811人已阅读
摘要
页面接收
<script>
export default {
onLoad (query) {
//by zhengkai.blog.csdn.net
// scene 需要使用 decodeURIComponent 才能获取到生成二维码时传入的 scene
const scene = decodeURIComponent(query.scene);
//类型为string,所以只能判断不叫"undefined"
//console.log(typeof(scene));
if(scene!="undefined"&&scene.length>4){
console.log(scene);
uni.showModal({
content: '证书编码:'+scene+',点击查询查看详情',
showCancel: false
});
this.certNumber=scene;
}else{
console.log("没有启动参数");
}
},
data() {
return {
//这个参数用于接收和存储传过来的scene
certNumber:'',
}
},
methods: {
//......
}
}
</script>
上一篇:uniapp总结
下一篇:生成带参数的小程序码