BatmanJS:深度嵌套的路线

时间:2012-09-02 10:22:59

标签: javascript coffeescript url-routing batman.js

我想知道是否有人这样的工作:

  @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中有多个嵌套路由?

1 个答案:

答案 0 :(得分:0)

确认,它不会超过两个级别。没有超过两个级别的测试,所以这可能是设计的。