axios 是一個基於 Promise 的 HTTP 客戶端,專門爲瀏覽器和 node.js 服務vue
Vue 2.0 官方推薦使用 axios 來代替原來的 Vue request,因此這裏介紹一下 axios 的功能和基本的使用方法,但願可以對各位全部幫助。^_^node
axios 可以支持 IE7 以上的 IE 版本,同時可以支持大部分主流的瀏覽器,須要注意的是,你的瀏覽器須要支持 Promise,纔可以使用 axios。因此比較好的作法是先安裝 polyfill,而後再使用 axios。ios
Using npm:npm
$ npm install axios
axios
Using bower:瀏覽器
$ bower install axios
markdown
Using cdn:post
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
lua
這裏以 Vue 爲例:在 NPM 中安裝 axios 以後,須要在 main.js 文件中引用 packagespa
import axios from 'axios'
而後全局綁定
Vue.prototype.$http = axios
而後能夠在 .vue 文件中使用 $http
來代替 axios
// Make a request for a user with a given ID axios.get('/user?ID=12345') .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); }); // Optionally the request above could also be done as axios.get('/user', { params: { ID: 12345 } }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });
axios.post('/user', { firstName: 'Fred', lastName: 'Flintstone' }) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });
function getUserAccount() { return axios.get('/user/12345'); } function getUserPermissions() { return axios.get('/user/12345/permissions'); } axios.all([getUserAccount(), getUserPermissions()]) .then(axios.spread(function (acct, perms) { // Both requests are now complete }));
固然,axios 的功能還包括 axios API、interceptor 等等,這裏想要詳細瞭解的能夠查看官方文檔:axios,後面陸續會介紹下 interceptor 的使用和各種參數的配置。