简体   繁体   中英

ember js get meta informations from json

i have a json data from my server:

{
  "post": {
    "id": 1,
    "title": "Progressive Enhancement is Dead",
    "comments": ["1", "2"],
    "links": {
      "user": "/people/tomdale"
    }
  },

  "meta": {
    "total": 100
  }
}

look exactly like the documentation ( https://guides.emberjs.com/v2.5.0/models/handling-metadata/ ) i try to get the meta object with no success

export default Ember.Route.extend({
  model() {
    var data = this.store.findAll('post');
    data.then((result) => {
      let meta = result.get('meta');
      console.log(meta); //this return me undefined
    })
    return data;
  }
});

You are using findAll method and it does not support meta data. You should use this.store.query('post', {/*params*/}) method instead, if you want to get multiple posts with meta data.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM