我正在使用Ember數據0.14。在Ember數據中找到沒有關係的許多關係
我有這樣的數據:
{
"product": {
"id": 185588,
"name": "USB MIDI Adapter"
},
"images": [
{
"url": "google.com",
"product_id": 185588
},
{
"url": "google.com2",
"product_id": 185588
}
]
}
而且這些機型:
App.Image = DS.Model.extend({
url: DS.attr('string'),
product_id: DS.belongsTo('App.Product')
});
App.Product = DS.Model.extend({
name: DS.attr('string'),
images: DS.hasMany('App.Image')
});
DS.RESTAdapter.map('App.Product', {
images: { embedded: 'always' }
});
但我不能獲得與工作有關,對產品的「圖像」是空的。這不是它應該如何工作?
您可以更新您的問題,以顯示您的版本的燼數據?從0.14到1.0.0-beta.x有一些中斷變化,並且可能會混淆使用錯誤版本的用戶。 –