我想知道是否有人有这样的工作:
@resources 'projects', ->
@resources 'tables', ->
@resources 'items'
具有相应的视图内容,例如:
%a{"data-bind" => "table.name", "data-route" => "routes.projects[project].tables[table]"}
%div{"data-foreach-item" => "project.table.items"}
%p{"data-bind" => item.name"}
%a.btn{"data-route" => "routes.projects[project].tables[table].items[item]"} View details »
这里的问题在于链接标签:
Uncaught DevelopmentError: Couldn't find a route for the name items!
但是 p 标签中的项目名称显示正确。我的路线有问题。有人知道 BatmanJS 中的多个嵌套路由吗?