samedi 5 juillet 2014

Ember CLI where to define routes?


Vote count:

0




So i've created some routes using ember generate route {my_route_name} and it creates a js file under routes and a hbs file under templates


Now I want to define these routes like



App.Router.map(function() {
this.resource('posts');
this.resource('post', { path: '/post/:post_id' });
});


But where do I do that in ember-cli?


I've tried adding it in the app.js file right under this code



var App = Ember.Application.extend({
modulePrefix: 'front', // TODO: loaded via config
Resolver: Resolver
});


But that gives me an error: Uncaught TypeError: Cannot read property 'map' of undefined


So I am a little confused as to where to actually define all my routes?



asked 18 secs ago






Aucun commentaire:

Enregistrer un commentaire