Axios(一):axios在vue中的使用教程

本文介绍了在Vue项目中如何使用axios,包括局部和全局的解决方案。局部使用可以通过引入vue-axios在main.js中注册,然后在组件内调用。全局使用可以将axios挂载到Vue的原型链上,或者结合Vuex的action进行请求管理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在 vue项目中使用axios分为局部使用和全局使用

在vue中局部使用

import axios from 'axios'

axios.get('/api/goods/add_info/?ID=12345&firstName=Fred&lastName=Flintstone')
.then(function (response) {
    console.log(response);
})
.catch(function (error) {
    console.log(error);
});

在vue中全部使用

axios 是一个基于 promise 的 HTTP 库,所以是不能使用vue.use()方法的。
那么难道我们要在每个文件都要来引用一次axios吗?多繁琐!!!
☞解决方法有很多种:

1.结合 vue-axios使用

看了vue-axios的源码,它是按照vue插件的方式去写的。那么结合vue-axios,就可以去使用vue.use方法了

  1. 首先在主入口文件main.js中引用:

    import axios from 'axios'
    import VueAxios from 'vue-axios'
    
    Vue.use(VueAxios,axios);
  2. 之后就可以使用了,在组件文件中的methods里去使用了:

    getNewsList(){
        this.axios.get('api/getNewsList').then((response)=>{
            this.newsList=response.data.data;
        }).catch((response)=>{
            console.log(response);
        })
    }

    2.axios 改写为 Vue 的原型属性(不推荐这样用)

  3. 首先在主入口文件main.js中引用,之后挂在vue的原型链上:

    import axios from 'axios'
    Vue.prototype.$axios= axios
  4. 在组件中使用

    this.$ajax.get('api/getNewsList')
    .then((response)=>{
        this.newsList=response.data.data;
    }).catch((response)=>{
        console.log(response);
    })

    3. 结合Vuex的action

  5. 在vuex的仓库文件store.js中引用,使用action添加方法

    import Vue from 'Vue'
    import Vuex from 'vuex'
    import axios from 'axios'
    
    Vue.use(Vuex)
    const store = new Vuex.Store({
    // 定义状态
    state: {
        user: {
        name: 'xiaoming'
        }
    },
    actions: {
        // 封装一个 ajax 方法
        login (context) {
        axios({
            method: 'post',
            url: '/user',
            data: context.state.user
        })
        }
    }
    })
    
    export default store
  6. 在组件中发送请求的时候,需要使用 this.$store.dispatch

    methods: {
        submitForm () {
            this.$store.dispatch('login')
        }
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值