Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90%e5%be%ae%e4%bf%a1%e5%b0%8f%e7%a8%8b%e5%ba%8f%e3%80%91%e5%ad%90%e9%a1%b5%e9%9d%a2%e4%bc%a0%e9%80%92%e6%95%b0%e6%8d%ae%e7%bb%99%e7%88%b6%e9%a1%b5%e9%9d%a2%ef%bc%8c%e7%88%b6%e9%a1%b5%e9%9d%a2.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 703

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-content/themes/mkBlog/single-post-%e3%80%90%e5%be%ae%e4%bf%a1%e5%b0%8f%e7%a8%8b%e5%ba%8f%e3%80%91%e5%ad%90%e9%a1%b5%e9%9d%a2%e4%bc%a0%e9%80%92%e6%95%b0%e6%8d%ae%e7%bb%99%e7%88%b6%e9%a1%b5%e9%9d%a2%ef%bc%8c%e7%88%b6%e9%a1%b5%e9%9d%a2.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 706

Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (260): C:\wwwroot\www.ynlykl.com/wp-includes/theme-compat/single-post-%e3%80%90%e5%be%ae%e4%bf%a1%e5%b0%8f%e7%a8%8b%e5%ba%8f%e3%80%91%e5%ad%90%e9%a1%b5%e9%9d%a2%e4%bc%a0%e9%80%92%e6%95%b0%e6%8d%ae%e7%bb%99%e7%88%b6%e9%a1%b5%e9%9d%a2%ef%bc%8c%e7%88%b6%e9%a1%b5%e9%9d%a2.php in C:\wwwroot\www.ynlykl.com\wp-includes\template.php on line 709
【微信小程序】子页面传递数据给父页面,父页面通过时间传递数据给子页面 | 越努力越快乐

【微信小程序】子页面传递数据给父页面,父页面通过时间传递数据给子页面

gengboxb 251 0

父页面

wx.navigateTo({
    url: `${this.properties.toUrl}?detaiData=${JSON.stringify(e.currentTarget.dataset.detaidata)}`,
    events: {
        // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
        acceptDataFromOpenedPage: function(data) {
            console.log(data);
        },
    },
    success: function(res) {
        // 通过eventChannel向被打开页面传送数据
        res.eventChannel.emit('acceptDataFromOpenerPage', { data: 'test' });
    }
});

子页面

获取父页面传过来的数据

onLoad(options) {
    const eventChannel = this.getOpenerEventChannel();
    eventChannel.on('acceptDataFromOpenerPage', (data) => {
        console.log(data)
    });
},

传递数据到父页面

const eventChannel = this.getOpenerEventChannel();
// 触发父页面方法,传递数据
eventChannel.emit('acceptDataFromOpenedPage', { test: 'test'});
// 返回
wx.navigateBack();

发表评论 取消回复
表情 图片 链接 代码

分享