0

使用

openSavedForm() {
  this.storage.get('test').then((val) => {
    this.auditResults = JSON.parse(val);
    this.audit = this.auditResults
    this.auditOne = this.auditResults.siteVehicle; 
    console.log('pull all', this.audit);     
  });
}

我可以在 sqlite 中查看我的键值对存储项目。这是 console.log 的照片

数据库的console.log

是否可以只更新 siteVehicle 数组

async saveFormUpdates() {
  this.newAudit =this.auditOne;
  await this.storage.set( 'test', JSON.stringify(this.newAudit));
  console.log ("storage", this.newAudit);
} 

不删除所有其他数组?

4

1 回答 1

0

我的异步 saveFormUpdates() 是错误的。结果只是保存 this.audit 而不是 this.auditOne 完成了所有操作,而我没有进一步的输入。

async saveFormUpdates() {
 this.newAudit = this.audit;
 await this.storage.set( 'test', JSON.stringify(this.newAudit));
 console.log ("storage", this.newAudit);
} 
于 2019-10-09T14:22:08.943 回答