我有一个带有 ember-data v.11 的应用程序,运行良好。在 ember-data 12 更新我分手了一个关系。如此处所述, 我有这些模型:
App.TransportDocument = DS.Model.extend
number: DS.attr 'string'
transportDocumentRows: DS.hasMany('App.TransportDocumentRow')
App.TransportDocumentRow = DS.Model.extend
productName: DS.attr 'string'
quantity: DS.attr 'string'
measure: DS.attr 'string'
transport_document: DS.belongsTo('App.TransportDocument')
我返回这个 JSON:
{
transport_document:
{
number: 1
transport_document_rows: [602, 601, 3, 2, 1]
},
transportDocumentRows:
[
{
id:602,
transport_document_id:1,
product_name:dfsds,
quantity:1,
…
},
…
]
}
我的应用程序正在查看传输文档属性,但忽略了行属性。
我还尝试了骆驼化、表格化、将行直接放在传输文档中。似乎没有任何效果。你的 JSON 长什么样?
谢谢