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/tomd
Solution 1:
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.
Post a Comment for "Ember Js Get Meta Informations From Json"