VUE:使用async和await实现axios同步请求

简介: VUE:使用async和await实现axios同步请求

一、axios异步请求出现的问题

handleClick(tab, e) {
      this.$axios({
        url: '/operatingsystem/student/selectStudentsByClno',
        method: 'get',
        params: {
          clno: tab.props.name
        }
      }).then(res => {
        this.StudentsByClno = res.obj
      })
    },

在页面中调用methods中handleClick函数中的axios请求时,因为.then的特性,可能会出现后端返回的值还没赋值到StudentsByClno中时页面就对StudentsByClno中的数据进行渲染,从而导致报错或者后端数据来不及渲染到页面之上

二、解决办法:使用async 和await

async 和await 介绍

在ES7标准中新增了asyncawait关键字,作为处理异步请求的一种解决方案,实际上是一个语法糖,在ES6中已经可以用生成器语法完成同样的操作,但是async/await的出现使得用这样的方式处理异步请求更加简单和明白。

使用asyncawait 将会使axios从异步请求变为同步请求。

异步函数也就是意味着这个函数的执行不会阻塞后面代码的执行。

注意事项

  1. 只有在async方法里面才能使用await操作符;
  2. await操作符是针对Task对象的;
  3. 当方法A调用方法B,方法B方法体内又通过await调用方法C时,如果方法C内部有异步操作,则方法B会等待异步操作执行完,才往下执行;但方法A可以继续往下执行,不用再等待B方法执行完。
    async handleClick(tab, e) {
      await this.$axios({
        url: '/operatingsystem/student/selectStudentsByClno',
        method: 'get',
        params: {
          clno: tab.props.name
        }
      }).then(res => {
        this.StudentsByClno = res.obj
      })
    },

三、突发问题

在使用async/await时报了如下错误:

 ERROR  Failed to compile with 1 error                                                                                                                         下午8:13:38

This dependency was not found:

* regenerator-runtime/runtime.js in ./node_modules/cache-loader/dist/cjs.js??ref--12-0!./node_modules/babel-loader/lib!./node_modules/cache-loader/dist/cjs.js??ref--0-0!.
/node_modules/vue-loader-v16/dist??ref--0-1!./src/views/Challenge.vue?vue&type=script&lang=js

To install it, you can run: npm install --save regenerator-runtime/runtime.js

让我运行:

npm install --save regenerator-runtime/runtime.js

可运行后又报错:

info: please complete authentication in your browser...Completed in 0ms
npm ERR! code 128
npm ERR! command failed
npm ERR! command git ls-remote ssh://git@github.com/regenerator-runtime/runtime.js.git
npm ERR! git@github.com: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Ailjx\AppData\Local\npm-cache\_logs\2021-11-11T12_30_04_836Z-debug.log
还出现过运行上述指令后弹出一个github的框要求输入一个什么东西(我忘记了)

四、解决办法

直接装完整包

npm install regenerator-runtime
相关文章
|
4月前
|
存储 JavaScript
vue页面跳转取消上一个页面请求
本文介绍了在Vue中如何取消上一个页面的请求,以避免页面跳转时请求未完成导致的数据错误。核心方法是使用axios的请求拦截器设置请求的取消令牌(cancelToken),并在vuex中存储这些取消令牌的引用。当进行路由跳转时,通过路由守卫清除这些请求,达到取消上一个页面请求的目的。
201 2
|
3月前
|
资源调度 JavaScript
|
3月前
|
缓存 JavaScript 搜索推荐
|
2月前
|
JavaScript 前端开发 Java
SpringBoot项目的html页面使用axios进行get post请求
SpringBoot项目的html页面使用axios进行get post请求
60 2
|
4月前
|
JavaScript 前端开发 开发者
vue中使用axios请求post接口,请求会发送两次
vue中使用axios请求post接口,请求会发送两次
|
2月前
|
JavaScript 前端开发 Java
SpringBoot项目的html页面使用axios进行get post请求
SpringBoot项目的html页面使用axios进行get post请求
41 0
|
3月前
|
Python
axios的get请求传入数组参数
【10月更文挑战第11天】 当使用 `axios` 发送包含数组参数的 GET 请求时,默认的序列化方式可能与后端(如 Django)不兼容,导致无法正确获取数组参数。解决方案是通过 `paramsSerializer` 指定自定义序列化函数,或使用 `qs` 库来格式化数组参数,确保前后端一致。示例代码展示了如何使用 `qs` 库设置 `arrayFormat` 为 `"repeat"`,以符合 Django 的解析要求。
114 2
|
3月前
|
JSON JavaScript 前端开发
axios的post请求,数据为什么要用qs处理?什么时候不用?
axios的post请求,数据为什么要用qs处理?什么时候不用?
|
5月前
|
Python
axios的get请求传入数组参数
axios的get请求传入数组参数

热门文章

最新文章