1. h5端可以有window的方法,二级页面的url携带了参数需要获取的话,
getUrlParam(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); // 构造一个含有目标参数的正则表达式对象
var r = window.location.search.substr(1).match(reg); // 匹配目标参数
if (r != null) return unescape(r[2]); return null; // 返回参数值 },
this.taskid = this.getUrlParam('taskid')
this.phone = this.getUrlParam('phone')
2. uniapp和小程序的onload 生命钩子里面有形参option 可以从中获取到传递过来的参数
onLoad (option) {
console.log( option ) //页面加载的时候拿到地址栏后面的参数
},