我有代码尝试通过简单地设置所有者的 id 来设置模型实例的所有者,如下所示:
tableJSON = {id: 1, room_id: 1}
rec = App.Table.createRecord();
rec.setProperties(tableJSON);
App.store.commit();
我正在使用localStorage ember adapter
.
它没有在桌子模型上设置房间。该模型指定桌子属于房间。
当我打电话时table.get('room')
,它返回null。
有任何想法吗?