2

所以我已经从 RC1 升级到了 Angular2 的最终版本。我做了很多调整,但每次我注入RuntimeCompiler我的AppComponent,都会发生这个错误。

CompileMetadataResolver 没有提供程序

我不知道这里发生了什么,也没有看到网上关于这个问题的答案。任何帮助将不胜感激,无论如何这里是我的 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']);
        }
    }
}

先感谢您。

4

1 回答 1

3

我想说,您应该将提供程序集添加到应用程序模块:

import { COMPILER_PROVIDERS } from "@angular/compiler";
...

@NgModule({
    imports: [
        ...
        BrowserModule
    ],
    declarations: [ ... ],
    bootstrap:    [ ... ],
    providers: [
        COMPILER_PROVIDERS
    ],
})
export class AppModule { }

这组COMPILER_PROVIDERS提供程序包含RuntimeCompiler. 有一个使用那段代码的example工作我如何使用/创建动态模板来使用 Angular 2.0 编译动态组件?还有更多细节......plunker

于 2016-09-23T06:49:00.640 回答