使用REST Adapter
,可以通过执行以下操作来嵌入对象:
App.Adapter.map('App.User', {
properties : {embedded: 'always'},
});
如何使用 声明嵌入对象FIXTURE
?我试过在模型中指定这个:
App.User = DS.Model.extend({
properties : DS.belongsTo('App.UserProperties', { embedded : true })
});
但这不起作用。是否可以使用嵌入对象FIXTURES
?我的FIXTURE
样子:
App.User.FIXTURES = [
{
id: 'id1',
type: 'user',
properties : {
name: 'Max Smith',
email: 'max.smith@email.com' }
},
];