赞
踩
uniapp 开发出现这个 Error in onLoad hook: “SyntaxError: Unexpected end of JSON input“,这个问题如何解决。
由于JSON.parse无法识别某些url中的特殊字符比如&等特殊符号造成的。
页面A(JSON.stringify传参)
uni.navigateTo({
url:"/pages/A/index?data="+encodeURIComponent(JSON.stringify(data))
});
页面B(JSON.parse接受参数)
onLoad(options) {
const data = options.data;
if (data) {
this.info= JSON.parse(decodeURIComponent(data));
}
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。