修改这段代码实现 等待this.addressFee方法执行完再执行this.loadDataonShow() { if (this.addrData && this.addrData._id) return; this.$db[_address].where(`create_uid == "${this.member._id}"`).tofirst({ orderby: 'is_default desc' }) .then(res => { console.log('onShow res', res); if (res && res.code === 200) { this.addrData = res.datas; this.calcTotalMoney(); this.addressFee(this.addrData); this.loadData(); } }) },
时间: 2024-03-05 19:53:59 浏览: 125
您可以使用 `async/await` 实现等待 `this.addressFee()` 方法执行完毕再执行 `this.loadData()` 方法的操作。具体代码如下:
```javascript
async onShow() {
if (this.addrData && this.addrData._id) return;
try {
const res = await this.$db[_address].where(`create_uid == "${this.member._id}"`).tofirst({
orderby: 'is_default desc'
});
console.log('onShow res', res);
if (res && res.code === 200) {
this.addrData = res.datas;
this.calcTotalMoney();
await this.addressFee(this.addrData);
await this.loadData();
}
} catch (error) {
console.error(error);
}
}
```
上述代码中,我们使用 `async/await` 实现了等待 `this.addressFee()` 方法执行完毕再执行 `this.loadData()` 方法的操作。在 `onShow()` 方法中,我们首先判断 `this.addrData` 是否存在,如果存在则直接返回。
如果 `this.addrData` 不存在,则执行下一步操作。在这一步操作中,我们使用 `await` 关键字等待 `this.$db[_address].where().tofirst()` 方法执行完成,返回结果保存在 `res` 变量中。
如果 `res` 变量存在并且 `res.code` 等于 200,则执行下一步操作。在这一步操作中,我们使用 `await` 关键字等待 `this.addressFee(this.addrData)` 方法执行完毕。当 `this.addressFee(this.addrData)` 方法执行完成后,再使用 `await` 关键字等待 `this.loadData()` 方法执行结束。
在 `try/catch` 结构中,我们使用 `catch` 捕获可能出现的错误,并将错误信息打印到控制台上。这样就实现了等待 `this.addressFee()` 方法执行完毕再执行 `this.loadData()` 方法的操作。
阅读全文