2013-10-02 49 views
0

在我的應用程序IM使用LSA和IM的hasMany關係需要使用的關係在我的模型,比如我有職位和評論模式是這樣的:localStorage的數據適配器和emberjs

App.Post = DS.Model.extend({ 
title:DS.attr('string'), 
comments:DS.hasMany('comments') 
}); 

App.Comments=DS.Model.extend({ 
content:DS.attr('string'), 
post:DS.belongsTo('post') 
}); 

我想知道浩在帖子和評論之間創建一個子女關係,以及如何更新帖子通訊。

回答