Ember-data 1.13 metadata for deprecations

I have used store.metadataFor

but since 1.13 it is deprecated. I have to use records.get('meta')

but it always returns undefined

( metadataFor

works well).

Here is my code:

this.store
  .findAll('user')
  .then(function (users) {
    console.log(users.get('meta'));
  });

      

+3


source to share





All Articles