文件名称:meteor-user-presence:跟踪哪些用户在线或空闲
文件大小:4KB
文件格式:ZIP
更新时间:2024-08-01 06:18:33
CoffeeScript
流星用户存在 跟踪哪些用户在线或空闲。 例子 安装 $ meteor add dpid:user-presence 用法 添加到您的项目后,一个名为UserPresences的新 Meteor 集合可用。 然后,所有经过身份验证的连接都存储在此集合中。 存在文档将包含以下字段: _id - 连接 ID userId - 连接用户 ID state - 当前状态。 值为“在线”或“空闲”。 数据(可选) - 您想要通过连接跟踪的任意数据。 注意:默认情况下,该包不发布存在。 您需要在服务器中像这样设置一个: Meteor . publish ( 'userPresence' , function ( ) { // Example of using a filter to publish only "online" users: var filter = { state
【文件预览】:
meteor-user-presence-master
----package.js(689B)
----README.md(2KB)
----versions.json(1KB)
----lib()
--------common.coffee(473B)
--------client.coffee(383B)
--------server.coffee(1003B)