类型'IonicStorageModule'上不存在属性'set'

时间:2017-05-25 13:31:48

标签: ionic2

  

Typescript错误属性'set'在类型上不存在   'IonicStorageModule'。

     

C:/Users/Kamleshutube/HDKProject/src/pages/login/login.ts         this.storage.set( 'MYDATA', '卡姆利什');              Typescript错误属性'get'在'IonicStorageModule'类型上不存在。   C:/Users/Kamleshutube/HDKProject/src/pages/login/login.ts

this.storage.get('mydata',(data)=>{
    console.log(data);

1 个答案:

答案 0 :(得分:2)

IonicStorageModule仅适用于app.module.ts

设置您需要在页面中的代码下方导入的存储空间

import { Storage } from '@ionic/storage';

并将其添加到构造函数中,然后使用this.storage.set(key,value);

进行设置

也不要将IonicStorageModule设为提供者

并在导入中设置IonicStorageModule.forRoot() 像这样

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