Class DS.AdapterPopulatedRecordArray
Extends: | DS.RecordArray |
---|---|
Defined in: | addon/-private/system/record-arrays/adapter-populated-record-array.js:8 |
Module: | ember-data |
save DS.PromiseArray
Module: | ember-data |
---|
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:182
- returns
- DS.PromiseArray
- promise
Saves all of the records in the RecordArray
.
Example
var messages = store.peekAll('message'); messages.forEach(function(message) { message.set('hasBeenSeen', true); }); messages.save();
update
Module: | ember-data |
---|
Inherited from DS.RecordArray addon/-private/system/record-arrays/record-array.js:114
Used to get the latest version of all of the records in this array from the adapter.
Example
var people = store.peekAll('person'); people.get('isUpdating'); // false people.update().then(function() { people.get('isUpdating'); // false }); people.get('isUpdating'); // true
© 2020 Yehuda Katz, Tom Dale and Ember.js contributors
Licensed under the MIT License.
https://api.emberjs.com/ember-data/2.18/classes/DS.AdapterPopulatedRecordArray/methods