promise 同步执行异步请求 内附代码 写法求教

发布于 2022-09-12 13:08:20 字数 646 浏览 13 评论 0

shopSum(){
    return new Promise(resolve=>{
      resolve();
      this.$post('ord003', {
        "flag":true
      }).then(res => {
          //请求1 
      })
    })
}
activitySum(){
   return new Promise(resolve=>{
      resolve();
      this.$post('ord003', {
        "flag":true
      }).then(res => {
          //请求2 
      })
    })
}
orderySum(){
   return new Promise(resolve=>{
      resolve();
      this.$post('ord003', {
        "flag":true
      }).then(res => {
          //请求3 
      })
    })
}
shopSum()
.then(activitySum())
.then(orderySum())

这样写他并没有按照顺序 求教

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

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

发布评论

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

评论(1

最美不过初阳 2022-09-19 13:08:20

首先shopSum、activitySum、orderySum中都要return一个promise,不知道你里面具体是怎么写的
然后像下面这样写

showSum()
.then(activitySum)
.then(ordeySum)

然后好好去学习一下promise,比较推荐mdn的资料,如果有能力尽量去读英文版的,promise本质上是callback的封装,promise学明白了你的问题自然就解决了
https://developer.mozilla.org...
https://developer.mozilla.org...


像这样改

shopSum(){
    return new Promise(resolve=>{
      this.$post('ord003', {
        "flag":true
      }).then(res => {
          resolve();
          //请求1
      })
    });
}

或是更简单一点

shopSum(){
    return this.$post('ord003', {
        "flag":true
      }).then(res => {
          //请求1 
      })
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文