2017-08-12 11 views
0

私はStorageを利用するIonic 2アプリケーションを持っています。 私は、アプリケーションを起動すると、エラーメッセージ "ストレージのすべてのパラメータを解決できません:(?、?)でクラッシュします。イオン2 - 保存エラーのすべてのパラメータを解決できません

私はエラーを見つけることができませんでした、誰が私を助けることができますか?

app.module.ts私のpackage.jsonで

import { NgModule, ErrorHandler } from '@angular/core'; 
import { BrowserModule } from '@angular/platform-browser'; 
import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular'; 
import { MyApp } from './app.component'; 
import { Storage } from '@ionic/storage'; 

import { AboutPage } from '../pages/about/about'; 
import { ContactPage } from '../pages/contact/contact'; 
import { HomePage } from '../pages/home/home'; 
import { EthylenePage } from '../pages/ethylene/ethylene'; 
import { PropylenePage } from '../pages/propylene/propylene'; 
import { TemporaryResultPage } from '../pages/temporary-result/temporary-result'; 
import { TabsPage } from '../pages/tabs/tabs'; 

import { StatusBar } from '@ionic-native/status-bar'; 
import { SplashScreen } from '@ionic-native/splash-screen'; 

@NgModule({ 
    declarations: [ 
    MyApp, 
    AboutPage, 
    ContactPage, 
    EthylenePage, 
    PropylenePage, 
    TemporaryResultPage, 
    HomePage, 
    TabsPage 
    ], 
    imports: [ 
    BrowserModule, 
    IonicModule.forRoot(MyApp), 
    ], 
    bootstrap: [IonicApp], 
    entryComponents: [ 
    MyApp, 
    AboutPage, 
    ContactPage, 
    PropylenePage, 
    EthylenePage, 
    TemporaryResultPage, 
    HomePage, 
    TabsPage 
    ], 
    providers: [ 
    {provide: ErrorHandler, useClass: IonicErrorHandler}, 
    StatusBar, 
    SplashScreen, 
    Storage 
    ] 
}) 
export class AppModule {} 

私は私の依存関係セクションにこれを追加しました: "イオン/ストレージ@": "1.1.7"

+0

にストレージを追加する必要はありません、あなたの 'package.json'ファイルを表示することができますか? – Sampath

答えて

1

をしてくださいこのhttp://ionicframework.com/docs/storage/

ドキュメント状態

import { IonicStorageModule } from '@ionic/storage'; 
をチェック

imports: [  
    BrowserModule, 
    IonicModule.forRoot(MyApp), 
    IonicStorageModule.forRoot() 
    ], 

あなたはプロバイダの一部

関連する問題