This is sample data store and how to display this single data without using each in template.
import Ember from 'ember'; import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
export default Ember.Route.extend(AuthenticatedRouteMixin, {
model() {
return this.store.findAll('profile');
},
setupController(controller, model) {
console.log(model);
console.log(model.mapBy('phone'));
}
});
Aucun commentaire:
Enregistrer un commentaire