ionic中storage使用

storage使用

1.引入
import { Storage } from ‘@ionic/storage’;
2.注入
constructor(
public storage: Storage
) {}
3.存储
this.storage.set(‘PROJECTINFO’, JSON.stringify(this.projectList));
4.取
this.storage.get(‘PROJECTINFO’).then(
(val) => {
this.dataList = JSON.parse(val);
}
);

ionic-storage与localstorage的规范

1.页面信息传递使用ionic-storage
2.在constructor 中取出,在本页面进行使用,脱离本页面之后,清除信息存储


你可能感兴趣的:(——Web前端)