EmberJS - Router Dynamic Models



Dynamic model defines the routes with dynamic segments which are used by Ember to access the value from URL. A dynamic segment begins with a : in the route() method and followed by an identifier. A URL must be defined with an id property in the model.

Syntax

Ember.Route.extend ({
   model(params) {
      //code here
   }
});

Router.map(function() {
   this.route('linkpage', { path: 'identifiers' });
});

For example and more information on usage of dynamic model along with dynamic segment, refer the EmberJS - Router Dynamic Segment chapter.

emberjs_router.htm
Advertisements