Axios发起HTTP请求时的先后执行顺序

书写如下代码时,日志输出的顺序不可控,可能是"you How are",也可能是"you are How"

html 复制代码
<script>
import axios from 'axios'
export default {
  created() {
    this.fn1()
    this.fn2()
    console.log('you')
  },

  methods: {
    fn1() {
      axios.get('https://random.dog/woof.json')
      .then(ret => {
        console.log('How')
      }).catch(e => {
        console.log(e)
      })

    },

    fn2() {
      axios.get('https://random.dog/woof.json')
      .then(ret => {
        console.log('are')
      }).catch(e => {
        console.log(e)
      })
    }

  }
}
</script>

如果希望日志输出顺序是"How are you",方案1代码如下:

html 复制代码
<script>
import axios from 'axios'
export default {
  name: 'App',
  async created() {
    await this.fn1()
    await this.fn2()
    console.log('you')
  },

  methods: {
    fn1() {
      return axios.get('https://random.dog/woof.json')
      .then(ret => {
        console.log('How')
      }).catch(e => {
        console.log(e)
      })

    },

    fn2() {
      return axios.get('https://random.dog/woof.json')
      .then(ret => {
        console.log('are')
      }).catch(e => {
        console.log(e)
      })
    }

  }
}
</script>

如果希望日志输出顺序是"How are you",方案2代码如下:

html 复制代码
<script>
import axios from 'axios'
export default {
  async created() {
    await this.fn1()
    await this.fn2()
    console.log('you')
  },

  methods: {
    async fn1() {
      const ret = await axios.get('https://random.dog/woof.json')
      console.log('How')
      console.log(ret.data)
    },

    async fn2() {
     const ret = await axios.get('https://random.dog/woof.json')
     console.log('are')
     console.log(ret.data)
    }

  }
}
</script>
相关推荐
浪浪山小白兔3 分钟前
HTML 基础入门:核心标签全解析
前端·javascript·html
浪浪山小白兔5 分钟前
HTML `<head>` 元素详解
前端·html
Milk夜雨19 分钟前
Vue.js 入门教程:快速上手
前端·javascript·vue.js
noravinsc20 分钟前
vue md5加密
前端·javascript·vue.js
海的预约22 分钟前
VUE之参数传递
前端·javascript·vue.js
清风细雨_林木木24 分钟前
Element中为什么不使用prop重置无法生效
前端·javascript·vue.js
GIS小虫40 分钟前
mapbox js本地化部署
开发语言·javascript·ecmascript
NoneCoder1 小时前
JavaScript系列(37)-- Service Workers详解
开发语言·javascript·ecmascript
lichong9511 小时前
【Flutter&Dart】MVVM(Model-View-ViewModel)架构模式例子-http版本(30 /100)
android·flutter·http·架构·postman·win·smartapi
傻小胖2 小时前
react19新API之use()用法总结
前端·javascript·react.js