完整过一遍axios,再也不怕写请求
axios请求方法 主要有get,post,put,patch,delete
get
获取数据
post
提交数据(表单提交+文件上传)
put
更新数据(将所有数据均推放到服务端)
patch
更新数据(只将修改的数据推送到后端)
dlelete
删除数据
get方法 写法
调用型
axios.get('/data.json').then((res)=>{
console.log(res)
})
复制代码
axios()型
axios({
method:'get',
url:'/data.json'
}).then((res)=>{
console.log(res)
})
复制代码
params
如果我们需要加载 : http://localhost:8080/data.json?id=12,应该如何去获取呢?
调用型
axios
共有 0 条评论