Ember Data reloads associations when including a response in a PUT request
问题 I have the following simple child-parent relationship. App.Parent = DS.Model.extend({ children: DS.hasMany('child') }); App.Child = DS.Model.extend({ parent: DS.belongsTo('parent') }); I have a situation where I update an instance of a Child and persist the changes with a save() . This issues a PUT request. Usually, a PUT request returns a 204 No Content but I return a 200 OK with a JSON serialization of the model as the response, e.g.: { child: { parent: 1 } } Unfortunately, this causes a