Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 OrientJS 和 OrientDB 来执行实时查询。订阅实时查询没有问题,但我找不到任何退订该事件的方法。
这将取消订阅初始化实时查询时返回的令牌。
live unsubscribe ${token}
此令牌是通过使用 liveQuery 解析器返回的数据获取的。
db.liveQuery(QUERY, { resolver: (a, b) => { const token = _.first(a).token; return a; }, })
请注意,您必须包含return a不破坏内置解析器。
return a