axios使用
Posted 覃上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios使用相关的知识,希望对你有一定的参考价值。
axios({
method:"POST",
// url:configure.state.gateway,
url:‘/api‘,
// headers: {
// "Content-Type": "multipart/form-data",
// ‘Content-Type‘: ‘application/json;charset=utf-8‘,
// ‘Access-Control-Allow-Origin‘: ‘*‘,
// },
withCredentials:true,
data:{
action:configure.state.site_digitalcert + ‘certstatic/getZszmStatisticsByMuchTime‘,
method: "post",
site: configure.state.eureka_digitalcert,
timeout: 6000000,
params: JSON.stringify({start: "2019-1-1,2020-1-1", end: "2019-12-31,2020-12-31", czrlx: ""}),
},
}).then((res)=>{
console.log(res);
});
官方文档https://www.kancloud.cn/yunye/axios/234845
以上是关于axios使用的主要内容,如果未能解决你的问题,请参考以下文章
axios 的理解和使用 axios.create(对axios请求进行二次封装) 拦截器 取消请求(axios.CancelToken)