A页面
uni.navigateTo({
url: '/path/to/b?id=1&name=uniapp'
});
B页面:
onLoad((param) => {
console.log(param.id);
console.log(param.name);
});
警告信息:
Extraneous non-props attributes (id, name) were passed to component but could not be automatically inherited because component renders fragment or text root nodes.
zhangjihao (作者)
英文我是能看得懂,问题是如何避免这个警告。
2024-09-20 14:35
蔡cai
回复 zhangjihao: 感觉跟跳转没关系吧,你百度看看
2024-09-20 15:20