1,axios ajax
Axios是一个基于promise的http库
下载
npm i axios -S
//get请求 axios.get('url',{params:{键:对}}) //url访问路径 传参 写在params里 .then(res=> console.log(res)) // 成功之后 返回值 res 是返回的东西 res.data.data是返回数据 .catch(res=> console.log('请求错误')) //失败执行函数 //post请求 axios.post('url',{键值对}) .then(res=>console.log(res)) .catch(res=>console.log('请求错误')) //get post请求 不同之处 在 传参 get要写在params里 post直接写
2,请求相应 拦截
请求拦截
axios.interceptors.request.use( request=>{
return request
}
)
响应拦截
axios.interceptors.response.use(response=> {
returen response
})
本文介绍了如何使用Axios这个基于Promise的HTTP库进行GET和POST请求。Axios允许在请求和响应时设置拦截器,方便统一处理请求前的数据格式或响应后的错误处理。示例代码展示了如何进行基础的GET和POST请求,以及如何添加请求和响应拦截器。
6690

被折叠的 条评论
为什么被折叠?



