我正在使用 angular2-dart 构建一个小型示例应用程序,并且在设置路由时出现错误:
例外:在路由器上找不到反射信息
我的模板中有一个按钮调用注销方法。单击时应用程序崩溃并显示错误。这是我的代码:
import 'package:angular2/angular2.dart';
import 'package:angular2/router.dart';
@Component(
selector: 'home',
directives: const [CORE_DIRECTIVES],
templateUrl: 'home.html'
)
class Home {
Router router;
Home(Router _router) {
this.router = _router;
}
logout() {
this.router.parent.navigate(['/Login']);
}
}
我已经阅读了 angular wiki 的这一部分,但我不确定这与内置包有什么关系。任何指针?