所以我已经从 RC1 升级到了 Angular2 的最终版本。我做了很多调整,但每次我注入RuntimeCompiler
我的AppComponent
,都会发生这个错误。
我不知道这里发生了什么,也没有看到网上关于这个问题的答案。任何帮助将不胜感激,无论如何这里是我的 AppComponent 供参考。
import { Component } from '@angular/core';
import { Location } from '@angular/common';
import { Router } from '@angular/router';
import { RuntimeCompiler } from '@angular/compiler';
@Component({
selector: 'content',
template: '<router-outlet></router-outlet>'
})
export class AppComponent {
constructor(
private location: Location,
private router: Router,
private runtimeCompiler: RuntimeCompiler
) {;
if (localStorage.getItem('id_token') == undefined) {
if (location.path().toLowerCase().startsWith('/login')) {
// LET IT BE
} else {
router.navigate(['login']);
}
runtimeCompiler.clearCache();
} else {
router.navigate(['menu']);
}
}
}
先感谢您。