美文网首页
promise.all

promise.all

作者: 秀萝卜 | 来源:发表于2021-05-27 08:27 被阅读0次
    Promise.all([
            this.$http.get('/form/getNames'),
            this.$http.get('/form/getCities')
          ]).then(data=> {
            this.names= data[0].data.data
            this.cities= data[1].data.data
          })
    

    相关文章

      网友评论

          本文标题:promise.all

          本文链接:https://www.haomeiwen.com/subject/ahzhsltx.html