时间:2021-05-18
今天在项目中使用axios时发现axios.all() 方法可以执行但是控制台报错,后来在论坛中看到是由于axios.all() 方法并没有挂载到 axios对象上,需要我们手动去添加
== 只需要在你封装的axios文件里加入 ==
instance.all = axios.all
就完美解决了!
补充知识:vue项目中使用axios.all处理并发请求报_util2.default.axios.all is not a function异常
报错:
_util2.default.axios.all is not a function
代码:
init () { util.axios.all([this.getCourseInit(), this.getConfirmInit()]) .then(util.axios.spread((indexRes, confirmRes) => { // 两个请求现在都执行完成 this.classData = indexRes.data.today_course.map(item => { item.time = timeUtil.formatDate2Str(item.start_time, 'HH:mm') + '~' + timeUtil.formatDate2Str(item.end_time, 'HH:mm'); return item; }); this.count.count_course_today = indexRes.data.count.count_course_today; this.count.count_student_not = indexRes.data.count.count_student_not; this.count.count_student_all = indexRes.data.count.count_student_all; this.count.count_teacher_all = indexRes.data.count.count_teacher_all; this.isLoading = false; })); }, getCourseInit () { return util.axios.get('/index'); }, getConfirmInit () { return util.axios.get('/course-confirm'); },原因:
axios实例没有all这个方法,all是axios的静态方法
解决办法:
以下方法不是最好的,还没找到更好的解决办法,目前先这样解决。
// 引入axios import axios from 'axios'; init () { axios.all([this.getCourseInit(), this.getConfirmInit()]) .then(axios.spread((indexRes, confirmRes) => { // 两个请求现在都执行完成 this.classData = indexRes.data.today_course.map(item => { item.time = timeUtil.formatDate2Str(item.start_time, 'HH:mm') + '~' + timeUtil.formatDate2Str(item.end_time, 'HH:mm'); return item; }); this.count.count_course_today = indexRes.data.count.count_course_today; this.count.count_student_not = indexRes.data.count.count_student_not; this.count.count_student_all = indexRes.data.count.count_student_all; this.count.count_teacher_all = indexRes.data.count.count_teacher_all; this.isLoading = false; })); }, getCourseInit () { return util.axios.get('/index'); }, getConfirmInit () { return util.axios.get('/course-confirm'); },以上这篇解决vue 使用axios.all()方法发起多个请求控制台报错的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
昨天写了个小爬虫,用axios.all同时请求多个页面时,国内网络的原因很容易就超时然后reject了,佛系resolve不可取啊,然后想到可以实现一个“重发失
1.问题描述:通过Origin是http://localhost:4200请求http://localhost:8081的服务,控制台报错如下,但是Respon
解决Python3控制台输出InsecureRequestWarning的问题问题:使用Python3requests发送HTTPS请求,已经关闭认证(veri
使用IntellijIdea经常遇到的三种乱码问题:1、工程代码乱码2、main方法运行,控制台乱码3、tomcat运行,控制台乱码解决方案:1.工程代码乱码S
在我们打开EMC控制台时,经常会遇到EMC控制台报错的问题,而且我发现网上提出EMC报错而无法打开的提问也很多,在之前的博文中,我也介绍了一些常见的EMC报错,