// 要传递的对象参数 const obj = { id: 123, name: 'test' }; // 将对象参数转为JSON字符串,并使用encodeURIComponent编码 const params = encodeURIComponent(JSON.stringify(obj)); // 跳转页面并传递对象参数 uni.navigateTo({ url: `${url}?params=${params}` }); 2. 在跳转后的页面,通过`onL...
// 要跳转的页面路径 const url = '/pages/detail/detail'; // 要传递的对象参数 const obj = { id: 123, name: 'test' }; // 将对象参数转为JSON字符串,并使用encodeURIComponent编码 const params = encodeURIComponent(JSON.stringify(obj)); // 跳转页面并传递对象参数 uni.navigateTo({ url: `$...