MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Oggetti incorporati nei dati Ember archiviati come oggetti separati

Stai usando RESTadapter... quando salvi vuoi serializzare tutte le relazioni incorporate?

Quando salvi o aggiorni il tuo record, passa nelle opzioni hash al metodo toJSON con

{associations: true}

Dai un'occhiata agli unit test su ember-data per esempi:https://github.com/emberjs/data/blob/master/packages/ember-data/tests/unit/to_json_test.js

deepEqual(record.toJSON({ associations: true }),
        { id: 1, name: "Chad", phone_numbers: [{
            id: 7,
            number: '123'
          },
          {
            id: 8,
            number: '345'
          },
          {
            id: 9,
            number: '789'
          }
        ]},
        "association is updated after editing associations array");
});

Spero che questo aiuti..