Angular 2 ES5 备忘单说要这样做:
var MyComponent = ng.router.RouteConfig([
{ path: '/:myParam', component: MyComponent, as: 'MyCmp' },
{ path: '/staticPath', component: ..., as: ...},
{ path: '/*wildCardParam', component: ..., as: ...}
]).Class({
constructor: function() {}
});
但是,我不知道如何@Component
在该类上指定内容,以便我可以实际实例化它。例如,
ng.router.RouteConfig([...]).Component({})
抛出异常,因为结果.RouteConfig
没有.Component
方法。同样, 的结果.Component
也没有.RouteConfig
方法。你如何设置这个?