我的 Ionic App 中有这个功能:
clearTransactions() {
this.clearIndex = this.clearIndex + 1;
if (this.clearIndex < 3) {
console.log("click " + (3 - this.clearIndex) + " more times");
} else {
this.storage.clearItems()
this.storage.getItems().then(
items => {
this.items = items
console.log("test", this.items);
}
)
this.clearIndex = 0;
}
}
出于某种原因,this.storage.getItems() 甚至在 this.storage.clearItems() 完成之前运行。谁能为这个问题提出解决方案?谢谢!
偶然的你
相关分类