0

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

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

如何匹配具体路线?例如页面/2/foo。
路线定义为

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

1 回答 1

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>
于 2014-10-06T17:27:41.853 回答