How would I go about requesting a limited amount of objects from the server in ember? I have
import Ember from 'ember';
export default Ember.Route.extend({
model(){
return this.store.findAll('game');
}
});
currently as my route. But say I only want to get the last 10 games?
Aucun commentaire:
Enregistrer un commentaire