Angular 2 Error在静态解析符号值时遇到错误

我从 this example开始在Angular2中使用简单的TranslationModule.现在,在更新了angular-cli之后,我得到了上面提到的错误,但我不知道我必须在这里更改:
import {NgModule} from "@angular/core";
import {TranslatePipe} from "./translate.pipe";
import {TRANSLATION_PROVIDERS} from "./translations";
import {TranslateService} from "./translate.service";

@NgModule({
  declarations: [
    TranslatePipe
  ],providers: [
    TRANSLATION_PROVIDERS,TranslateService
  ],exports: [
    TranslatePipe
  ]
})
export class TranslateModule {
}

而翻译.ts

import {OpaqueToken} from '@angular/core';

// import translations
import {LANG_EN_US_NAME,LANG_EN_US_TRANS} from './lang-en_US';
import {LANG_DE_DE_NAME,LANG_DE_DE_TRANS} from './lang-de_DE';

// translation token
export const TRANSLATIONS = new OpaqueToken('translations');

// default language
export const DEFAULT_LANG = "en_US";

// all translations
export const dictionary = {
  [LANG_EN_US_NAME]: LANG_EN_US_TRANS,[LANG_DE_DE_NAME]: LANG_DE_DE_TRANS
};

// providers
export const TRANSLATION_PROVIDERS = [
  {provide: TRANSLATIONS,useValue: dictionary}
];
尝试将键更改为静态值,如:
export const dictionary = {
  'en': LANG_EN_US_TRANS,'de': LANG_DE_DE_TRANS
};

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...