目前我的基本的Hello World應用程序的餘燼有以下模型對象是否ember.js支持HasMany只使用Em.Object.Extends?
ChatApp.User = Em.Object.extend({
username: null,
other: null
});
ChatApp.Message = Em.Object.extend({
message: null
});
我想提高這是用戶的hasMany消息 - 可以將這個作爲是做什麼?如果不是今天0.9.8中的首選方法是什麼?
你能否解釋一下?你想在ChatApp.User中保存一個ChatApp.message對象的數組嗎? – Rajat 2012-07-31 18:56:30
對於客戶端模型會有意義嗎(我認爲它是有效的) – 2012-07-31 20:08:37
您是否看到了ember-data?它管理着這種關係。 – 2012-08-01 10:22:49