February 2016
Beginner to intermediate
308 pages
5h 46m
English
When loading your application, the router looks at the URL and matches it to the route. We'll go over some basics on how this works.
The route map is used to define the URL mappings. Let's take a look at adding a new route using this.route.
router.js file in the app folder. To begin, we'll create a new route called about:// app/router.js
import Ember from 'ember';
import config from './config/environment';
var Router = Ember.Router.extend({
location: config.locationType
});
Router.map(function() {
this.route('about');
});
export default Router;Router.map in the preceding code handles the routing of the program. The this.route creates the about route. By default, the name ...
Read now
Unlock full access