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);
答案 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()
],