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.
我正在使用 webs-ockets 和骨干网做一个应用程序。我应该在哪里收听数据更新?在视图中?还是在模型中?
我也想知道合适的地方来听用户事件。
骨干事件不是(websocket)API 事件。
您可能正在寻找该websocket.onmessage事件。 当您收到此事件时,例如在 (Backbone) 上Model,您可以trigger()在 上的事件Model并让所有侦听器(可能View是 Backbone 的对象)处理它。
websocket.onmessage
Model
trigger()
View
希望在某种程度上有所帮助。