message-service
v1.0.9
Published
一. 安装 yarn add git+ssh://[email protected]:dev-public/message-service.git
Downloads
3
Readme
一. 安装 yarn add git+ssh://[email protected]:dev-public/message-service.git
二.引用
1.require('messager_js') 在window对象下会有message-service对象
2.script引入node_module/message-service/dist/index.js 在window对象下会有message-service对象
三. message-service 对象的使用
window对象上挂载一个messager对象包含以下函数 topic 是你发表的主题名称。 callback是订阅的回调函数,回调函数有一个收到的消息作为参数,msg是你要发送的消息。
subscribe(topic, callback) // 订阅
unSubscribe(topic) // 取消订阅
publish(topic, msg) // 发布消息