我正在编写一个利用 Ember.js、Ember Data 和通过 Node.js 的 Socket.IO 的应用程序。我试图找出从套接字响应接收数据并将其加载到我的 Ember 数据存储中的最佳方法,例如:
window.socket = io.connect('http://localhost');
socket.on('action here', function(response) {
// how to load "response" JSON data into Ember Data store from here...?
});
编写自定义 DS.Adapter 是最好的(或唯一好的)解决方案吗?还是有另一种好的、可维护的方式来实现这一点?