标签: ember.js websocket adapter store
我正在使用Ember构建解决方案,该解决方案将使用websocket连接从外部服务器接收JSON格式的数据。我将使用包含套接字的适配器。从服务器接收数据时,我有一个问题是“将我的数据”推送到var store = this.get('store');不起作用。商店在适配器中未定义,因此行this.store.push('post',data)也不起作用。
var store = this.get('store');
this.store.push('post',data)
有没有办法将我的数据推送到商店,我错过了什么? 我可以找一个合适的工作示例吗?