js promise 同步異步數據展示問題?

发布于 2022-09-13 00:57:41 字数 363 浏览 5 评论 0

getIanMediumList().then(res => {
   this.mixItems = this.mixItems.concat(res.items)
   console.log('A': this.mixItems)
})
getGreenMediumList().then(res => {
   this.mixItems = this.mixItems.concat(res.items)
   console.log('B': this.mixItems)
})
console.log('C': this.mixItems)

A跟B都可以展示出數據
但是C展示不出來,會是空的
如何等兩個都完成後,讓C取得數據?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是一片海 2022-09-20 00:57:41

有异步了当然就得继续异步……

let p1 = getIanMediumList().then(res => {
   this.mixItems = this.mixItems.concat(res.items)
   console.log('A': this.mixItems)
})
let p2 = getGreenMediumList().then(res => {
   this.mixItems = this.mixItems.concat(res.items)
   console.log('B': this.mixItems)
})

Promise.all([p1, p2]).then(() => {
    console.log('C': this.mixItems)
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文