axios的配置项地址参考: https://www.npmjs.com/package/axios { // `url` is the server URL that will be used for the request url: '/user', // `method` is the request method to be used when making the request method: 'get', // default // `baseURL` will be prepen
vue中Axios请求豆瓣API数据并展示到Swipe中 1.首先是安装Axios: 安装方法cnpm install axios --save 等待npm安装完毕: 2.在main.js中引入axios引入方法: import Axios from 'axios' Vue.prototype.$axios = Axios 必须要这样引入才能使用 全部的main.js方法如下 // The Vue build version to load with the `import` command /
特征 比Jquery轻量,但处理请求不多的时候,可以使用 基于Promise语法标准 支持nodejs 自动转换JSON数据 用法 get // Make a request for a user with a given ID axios.get('/user?ID='+USER.ID) .then(function (response) { console.log(response); }) .catch(function (error) { console.log(error); });