ionic2
+を使用Angular2
しており、インストール済み"angular2-moment": "^1.0.0-beta.6"
です。インポートした後、次のエラーが表示されます
エラー:
バンドルの更新に失敗しました:「MomentModule」は node_modules\angular2-moment\index.js によってエクスポートされません
(src\app\app.module.ts によってインポートされます)。このエラーの修正については、 https://github.com/rollup/rollup/wiki/Troubleshooting#name-is-not-exported-by-moduleを参照してください
コード:
import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule } from '@angular/http';
import { CommonModule } from '@angular/common';
import { MyApp } from './app.component';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MomentModule } from "angular2-moment";
@NgModule({
declarations: [
LoginPage,
TabsPage,
ReversePipe
],
imports: [
IonicModule.forRoot(MyApp),
FormsModule,
ReactiveFormsModule,
BrowserModule,
MomentModule,
CommonModule,
HttpModule
],
bootstrap: [IonicApp],
entryComponents: [
LoginPage,
TabsPage
],
providers: [ myApi ]
})
export class AppModule {}
でインストールする方法について何か助けはMomentModule
ありionic2
ますか?