场景:A页面到B页面,B页面返回,A页面接收数据
A页面
//引入
import WxNotificationCenter from '@/common/NotificationCenter.js'
onLoad: function () {
//注册通知
WxNotificationCenter.addNotification('NotificationName', this.didNotification, this)
},
onUnload: function () {
//移除通知
WxNotificationCenter.removeNotification('NotificationName', this)
},
methods:{
//通知处理
didNotification: function (info) {
var that = this
console.log(info)
},
}
B页面
//引入
import WxNotificationCenter from '@/common/NotificationCenter.js'
//发送通知
WxNotificationCenter.postNotificationName('NotificationName', '来自B页面')
文件
http://e0c3afa5a2.hz22l-181.6464.cn/lian/NotificationCenter.js
3 个评论
要回复文章请先登录或注册
秋天无风
飘过大山 (作者)
lioil