我在尝试安装angular2时刻时遇到错误

时间:2017-06-21 08:10:20

标签: angular momentjs angular2-moment

这里的说明对我不起作用:

https://github.com/urish/angular2-moment

我做了

npm install --save angular2-moment

工作正常,然后我试图这样做:

typings install --save moment 

但出现typings: command not found错误,然后我在app.module.ts文件中执行了导入:

import { MomentModule } from 'angular2-moment';

将它包含在我的模块声明和入口组件数组中, 运行构建并获得:

  

"错误:意外的模块' MomentModule'由模块宣布的AppModule' "

1 个答案:

答案 0 :(得分:1)

import { BrowserModule  } from '@angular/platform-browser';
import {MomentModule} from 'angular2-moment';
@NgModule({
    declarations:[/**...**/]
    imports:      [BrowserModule,MomentModule], // did you update this line this works for me 
    bootstrap:    [AppComponent],
    providers:[
       /**
       ...

       **/
    ]
})

这可以查看此链接https://github.com/rahulrsingh09/AngularConcepts/blob/master/src/app/app.module.ts第115行