共计 1656 个字符,预计需要花费 5 分钟才能阅读完成。
场景形容
某些状况下,开发者可能须要实现页面间的消息传递来获取数据,例如 A 页面跳转至 B 页面后,B 页面发送音讯给 A 页面,A 页面可能接管到。此时能够通过音讯通道的机制来实现页面间的互相通信。
实现思路
页面 messageChannel 创立了音讯通道,并接管音讯。跳转到页面 test,在页面 test 通过音讯通道发送音讯。页面 messageChannel 收到音讯后通过 toast 展现进去。
解决办法
页面 messageChannel.ux 文件:
<template>
<div class="item-container">
<input type="button" onclick="creatChannel" value="创立音讯通道"/>
<input type="button" onclick="routeChannel" value="跳转到 detail 页面发送音讯"/>
<input type="button" onclick="cancelChannel" value="敞开音讯通道"/>
</div>
</template>
<style>
.item-container {
margin-bottom: 50px;
flex-direction: column;
justify-content:center;
}
input{margin-bottom: 70px;}
</style>
<script>
import prompt from '@system.prompt'
import router from "@system.router"
var channel;
export default {
data: {componentName: 'messageChannel'},
onInit: function () {this.$page.setTitleBar({text: 'messageChannel'})
},
creatChannel: function () {channel = new BroadcastChannel('channel1');
prompt.showToast({message: '创立音讯通道胜利'});
channel.onmessage = function (event) {console.log(event.data)
prompt.showToast({message: '承受音讯:' + event.data});
}
},
routeChannel: function () {
router.push({uri: '/Test'});
},
cancelChannel: function () {channel.close();
prompt.showToast({message: '敞开音讯通道胜利'});
}
}
</script>
页面 test.ux 文件:
<template>
<div class="item-container">
<input type="button" onclick="postChannel" value="发送音讯"/>
</div>
</template>
<style>
.item-container {
margin-bottom: 50px;
flex-direction: column;
justify-content:center;
}
</style>
<script>
export default {
data: {componentName: 'detail',},
onInit: function () {this.$page.setTitleBar({text: 'detail'})
},
postChannel: function () {var channel = new BroadcastChannel('channel1');
channel.postMessage("hello world");
}
}
</script>
更多参考
快利用文档参考:
https://developer.huawei.com/…
原文链接:https://developer.huawei.com/…
原作者:Mayism
正文完
发表至: appgallery-connect
2021-07-05