vue axios 的使用

来源:互联网 发布:360软件卸载大师 编辑:程序博客网 时间:2024/05/16 19:57

vue-axios

A small wrapper for integrating axios to Vuejs

How to install:

CommonJS:

npm install --save axios vue-axios

And in your entry file:

import Vue from 'vue'import axios from 'axios'import VueAxios from 'vue-axios'Vue.use(VueAxios, axios)

Script:

Just add 3 scripts in order: vueaxios and vue-axios to your document.

Usage:

This wrapper bind axios to Vue or this if you're using single file component.

You can axios like this:

Vue.axios.get(api).then((response) => {  console.log(response.data)})this.axios.get(api).then((response) => {  console.log(response.data)})this.$http.get(api).then((response) => {  console.log(response.data)})
原创粉丝点击