我知道路由用于将 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 或者我没有得到其他理由?