我是靠谱客的博主 幸福豌豆,最近开发中收集的这篇文章主要介绍vue3.0使用axios报错问题记录,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

vue-cli3.0使用axios的时候出现错误,记录一下

报错信息:

Uncaught TypeError: Cannot set property $axios of #<Vue> which has only a getter
at eval (main.js?56d7:12)
at Module../src/main.js (app.js:11102)
at __webpack_require__ (app.js:724)
at fn (app.js:101)
at Object.0 (app.js:11283)
at __webpack_require__ (app.js:724)
at app.js:791
at app.js:794

 

vue-cli3.0安装插件的时候要注意区分vue-cli2.0的命令

安装:

//vue-cli2.0命令
$ npm install axios
//vue-cli3.0命令
$ npm add axios

使用:

1.首先在main.js里边把axios实例挂载到Vue原型上
坑点: 命名的时候不能使用"axios"这个字段 import axios from
'axios' Vue.prototype.$ajax = axios
2.在需要发送请求的地方使用"$ajax"
this.axioss.get('/api/seller')
        .then(function(res){
console.log(res);
this.seller = res.data;
})
.catch(function(error){
console.log(error);
})

 

转载于:https://www.cnblogs.com/cgcgcg/p/10470953.html

最后

以上就是幸福豌豆为你收集整理的vue3.0使用axios报错问题记录的全部内容,希望文章能够帮你解决vue3.0使用axios报错问题记录所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部