eventChannel是uni-app提供的一个用于页面间通信的机制。它允许在不同的页面之间建立一个事件通道,通过发送和监听事件来传递数据。使用eventChannel可以在不同的页面之间传递更复杂的数据结构,如对象、数组等。 二、页面跳转与对象传参的实现 在跳转页面创建eventChannel 在要跳转到的页面(目标页面)中,我们首先需要在onLoa...
// 要跳转的页面路径 const url = '/pages/detail/detail'; // 要传递的对象参数 const obj = { id: 123, name: 'test' }; // 将对象参数转为JSON字符串,并使用encodeURIComponent编码 const params = encodeURIComponent(JSON.stringify(obj)); // 跳转页面并传递对象参数 uni.navigateTo({ url: `...
image.png MovieClick(movieItem){varitem=JSON.stringify(movieItem);uni.navigateTo({// url: '../Player/detailPlayer?play_url='+movieItem.vodPlayUrlurl:'../Player/detailPlayer?item='+item})} 接收参数 image.png onLoad:function(options){varitem=JSON.parse(options.item);// 字符串转对象console...
// 将对象参数转为JSON字符串,并使用encodeURIComponent编码 const params = encodeURIComponent(JSON.stringify(obj)); // 跳转页面并传递对象参数 uni.navigateTo({ url: `${url}?params=${params}` }); 2. 在跳转后的页面,通过`onLoad`事件获取传递的对象参数,并使用decodeURIComponent解码,然后转为对象。