veu axios 中 async await的两种使用方法

2 篇文章 0 订阅
本文通过对比未使用与使用async/await的异步请求代码,展示了如何通过async/await来简化JavaScript中的并发控制,使得请求处理更加有序,避免回调地狱。在使用async/await后,请求的前后顺序更加清晰,代码可读性显著提升,有助于提高开发效率和维护性。
摘要由CSDN通过智能技术生成

前言: 有效使用async await 会少很多问题

 

0. 未使用async await前

代码:

feach() {
console.log('我是请求前:' + new Date().toLocaleTimeString())
        this.$get(this.path, {
          ...params
        }).then(r => {
          console.log('我是请求结束中:' + new Date().toLocaleTimeString())
        })
        console.log('我是请求后:' + new Date().toLocaleTimeString())
}

控制台:

 

1.使用后(1 )

 

代码:

 async feach(params = {}) {
        console.log('我是请求前:' + new Date().toLocaleTimeString())
        await this.$get(this.path, {
          ...params
        }).then(r => {
          console.log('我是请求结束中:' + new Date().toLocaleTimeString())
        })
        console.log('我是请求后:' + new Date().toLocaleTimeString())
    },

控制台:

1.使用后(2 )

 

代码:

async feach(params = {}) {
        console.log('我是请求前:' + new Date().toLocaleTimeString())
        const arr = await this.$get(this.path, { ...params })
        console.log('我是结束后:' + arr + new Date().toLocaleTimeString())
    },

控制台:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值