URL をテンプレートにマップするためにルートが使用されることは理解していますが、どうやら this.route または this.resource でルートを定義できるようです。
App.Router.map(function() {
this.route("about", { path: "/about" });
this.route("favorites", { path: "/favs" });
});
App.Router.map(function() {
this.resource('posts', { path: '/posts' }, function() {
this.route('new');
});
});
サブルートをルートに定義したい場合、または私が得ていない別の根拠がある場合は、 this.resource を使用しますか?