Canjs路由组件

时间:2014-10-05 00:12:59

标签: javascript url-routing canjs canjs-routing

如何使用canjs完成组件的路由?
我有以下示例

can.Component.extend({
    tag: "router",
    events: {
      "{can.route} id bla": function(route, event, id, bla) {
        console.log("route", id, bla);
      }
    }
  });

我如何匹配特定路线?例如page / 2 / foo。
路线定义为

can.route(":page/:id/:bla", {page: "", id: "", bla: ""});

1 个答案:

答案 0 :(得分:0)

在组件中进行路由的技巧是不在组件中进行路由。相反,用

之类的东西
can.route(":page/:id", {page: "content", id: "index"});

您将can.route作为状态对象传递。主要观点如下:

<script id="main" type="text/mustache">
  <app-page page="state.page" page-id="state.id"></app-page>
</script>

呈现为can.view('main', { state: can.route })您的组件,然后只检查这些属性:

can.Component.extend({
  tag: 'app-page',
  template: 'page',
  scope: {
    isBlog: function() {
      return this.attr('page') === 'blog';
    },

    isStatic: function() {
      return this.attr('page') === 'content';
    }
  }
});

使用初始化其子组件的视图:

<script id="page" type="text/mustache">
  {{#if isBlog}}
    <app-blog blog-id="pageId"></app-blog>
  {{/if}}
  {{#if isStatic}}
    <app-static page-id="pageId"></app-static>
  {{/if}}
</script>