我有这样的路由器
App.Router.map(function () {
this.route("about");
this.resource("invoices", { path: "/invoices" }, function () {
this.resource("invoices.show", { path: "/:id" });
this.resource("invoices.update", { path: "/:id/edit" });
this.route("create");
});
});
并生成指向我拥有的各种路线和资源的链接
<nav>
{{#linkTo "invoices.index"}}Invoices{{/linkTo}}
{{#linkTo "invoices.show" 1}}Invoice{{/linkTo}}
{{#linkTo "invoices.create"}}New invoice{{/linkTo}}
</nav>
为什么我必须使用invoices.show
作为show资源的名称,然后将其引用为invoices.show
,但我可以使用create
作为路由,然后将其引用为{{ 1}}?
理想情况下,我的路由器将是
invoices.create
它将自动为资源名称添加前缀,因为它们嵌套在发票资源中。正确?
答案 0 :(得分:1)
是的,嵌套资源可以堆叠它们的名称,你应该能够引用带点符号的嵌套路由。
但是,您需要做更多的事情:
this.resource("invoices", { path: "/invoices" }, function () {
// invoices.show
this.resource("show", { path: "/:id" }, function() {
// invoices.show.update
this.route("update", { path: "/edit" });
});
// invoices.create
this.route("create");
});
因为您的更新操作依赖于提供给show route的对象。
基本上,依赖于父路由中使用的相同资源或资源子集的嵌套元素应定义为资源映射。叶节点可以定义为基本路由。