Axios 简单使用
axios({
method: "post",
headers: {
"Content-Type": "application/json"
},
url: "https://localhost:8080/api/v1/Member/Login",
data: reqData,
}).then(res => {
console.log("请求成功:"+res);
}).catch(res => {
console.log("请求失败"+res);
});

浙公网安备 33010602011771号