-
以前用Ajax
-
但是现在jQuey也是越来越少了
功能特点:
- 在浏览器中发送XMLHttpRequests请求
- node.js 中发送 http 请求
- 支持Promise API
- 拦截请求和响应
- 转换请求和响应数据
axios 请求方式
axios(config)
axios.request(config)
axios.get(url[,config])
axios.delete(url[,config])
axios.head(url[,config])
axios.post(url[,data[,config]])
axios.put(url[,data[,config]])
axios.patch(url[,data[,config]])
axios的基本使用
功能强大的网络请求库
功能强大的网络请求库 第一个回调函数,请求成功 , 请求失败的时候触发
axios.get(文档提供的地址?key=value&key2=value2).then.(function(response){},function(err){})
查询字符串,为了返回参数
axios.post(文档提供的地址?{key:value&key2:value2}).then.(function(response){},function(err){})
查询字符串,对象