多个异步请求的执行顺序
Fn() {
// 以下两个都为异步请求
this.getData1()
this.getData2()
}
this.Fn()
我以为的执行顺序是:getData1 --> getData2
但其实,顺序不一定,getData1 有时在前,有时在后。
解决:加上 async 和 await
async Fn() {
// 以下两个都为异步请求
await this.getData1()
await this.getData2()
}
this.Fn()
参考链接
本文来自博客园,作者:shayloyuki,转载请注明原文链接:https://www.cnblogs.com/shayloyuki/p/17969829
posted on 2024-01-17 13:31 shayloyuki 阅读(60) 评论(0) 编辑 收藏 举报