欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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

程序员文章站 2023-12-22 08:44:34
...

一、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://[email protected]/regenerator-runtime/runtime.js.git
npm ERR! [email protected]: 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

上一篇:

下一篇: