PubSub:在 JavaScript 中创建发布订阅对象的简单实用程序

时间:2024-07-23 21:23:58
【文件属性】:

文件名称:PubSub:在 JavaScript 中创建发布订阅对象的简单实用程序

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-23 21:23:58

JavaScript

发布订阅 一个简单的实用程序类,用于在 JavaScript 中创建发布/订阅对象。 基于发布的 PubSub 实用程序 David Walsh。 它旨在有助于跨模块通信。 用法 通过 JavaScript 实例化一个 PubSub 对象,然后发布和订阅: var newPubSub = new PubSub ( ) ; newPubSub . subscribe ( 'aNewTopic' , function ( ) { // do things when aNewTopic is published to } ) ; newPubSub . publish ( 'aNewTopic' , { data : 'I want to publish this data to the topic.' } ) ;


【文件预览】:
PubSub-master
----.gitignore(548B)
----package.json(260B)
----src()
--------scripts()
----Gruntfile.js(1KB)
----dist()
--------scripts()
----LICENSE(1KB)
----README.md(573B)

网友评论