axios is not defined in vue js cli

廉价感情. 提交于 2019-11-30 08:55:45

Vue.use means adding plugins. However, axios is not a plugin for Vue, so you can not add it globally via use.

My recommendation is importing axios only when you need it. But if you really need to access it globally, you may like to add it to prototype.

Vue.prototype.$axios = axios

Then you can access axios in vue using this.$axios

Solution 1 (Not recommended):

In main.js, add this line instead of import axios from 'axios'

window.axios = require('axios');

And remove

Vue.use(axios)

Solution 2 (Recommended Approach):

Using window is generally considered a bad practice (it's funny that Laravel actually uses this way), so you better use axios the following way:

1) Create a folder named plugins inside of your src directory.

2) Then, create axios.js file inside that directory. We will put all our axios logic here and use axios as a Vue plugin.

3) Add the following:

import axios_http from 'axios'

// insert all your axios logic here

export const axios = axios_http

export default {
    install (Vue, options) {
        Vue.prototype.$axios = axios_http
    }
}

4) In src/main.js, add the following:

import Vue from 'vue' // You can skip this line
import VueAxios from './plugins/axios'

Vue.use(VueAxios)

Now, you can use axios as this.$axios in your components. So something like this.$axios.get().

However, in Vuex, you cannot access this so you have got to import axios from plugins/axios.js file.

Therefore, you can import axios with the following line:

import { axios } from '@/plugins/axios'

Now, you can use axios directly in your store.

That's it!

user3918528

Also install vue-axios and import in main.js

import VueAxios from 'vue-axios'

Then in main.js:

Vue.use(VueAxios, axios)

Now if I am not mistaken in your methods you can use for example:

let uri = 'http://localhost:4000/tickets/add';
this.axios.post(uri, this.ticket).then((response) => {
    console.log(response);
});
import Vue from 'vue'
import axios from 'axios'

Vue.prototype.$http = axios;

then inside your component you can start using axios like this:

{
    methods: {
        someMethod() {
            this.$http.get('/users').then(() => {
                // do something
            })
        }
    }
}

i found in laravel project window.axios = require('axios'); when i insert it in myproject. that all be fine!

Use following command to install npm

 npm install axios --save

After executing above command import like mentioned below:

import axios from 'axios'

Try this codes:

import axios from 'axios'
    Vue.use(axios)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!