0

我有一个带有 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 长什么样?

谢谢

4

1 回答 1

3

从一个版本迁移到另一个版本时,请检查BREAKING_CHANGES.md文件

https://github.com/emberjs/data/blob/master/BREAKING_CHANGES.md

它解释了你的 json 需要看起来像这样:

{
  transport_document:
  {
    number: 1
    transport_document_row_ids: [602, 601, 3, 2, 1]
  },
  transport_document_rows: 
  [
    {
      id:602, 
      transport_document_id:1, 
      product_name:dfsds, 
      quantity:1,
      …
    },
    …
  ]
}
于 2013-05-03T15:27:59.113 回答