axios使用方法
- 官网:Axios中文文档 | Axios中文网
- Axios是一个基于Promise的HTTP库,可以用在浏览器和nodejs中
axios安装
-
使用npm/cnpm安装
npm install axios
-
使用cdn进行外部引入
<script src=""></script>
axios使用
-
请求方式
axios.request(config)
axios.get(url[, config])
axios.delete(url[, config])
axios.head(url[, config])
axios.options(url[, config])
axios.post(url[, data[, config]])
axios.put(url[, data[, config]])
axios.patch(url[, data[, config]])//以上方法我们使用最多还是post get
-
get格式
axios.get("url", {
params: {
参数名1: 参数值1,
参数名2: 参数值2,
...
}
}).then(res=> {
res是后台返回的接口数据
}).catch(err=> {
错误捕获
}) -
post格式
axios.post('url', {
参数名1: 参数值1,
参数名2: 参数值2,
...
}).then(res=> {
res是后台返回的接口数据
}).catch(err=> {
错误捕获
})