How to save changes on associated models in Ember Data
问题 I'm running Ember Data 1.0.0 with Ember 1.3.0. I have this data: { "product": { "id": 185588, "name": "USB MIDI Adapter", "images":["imageid1", "imageid2"....] }, "images": [ { "id": "imageid1", "url": "google.com" }, { "id": "imageid2", "url": "google.com2" } ] } And these models: App.Image = DS.Model.extend({ url: DS.attr('string') }); App.Product = DS.Model.extend({ name: DS.attr('string'), images: DS.hasMany('Image') }); In my template I have an edit form to change the url on the