前端杂记

173 阅读1分钟

axios

axios({
    url: "url",
    method: "post",// 默认是 get
    params: {},//query参数
    data: {},//body参数
    headers: {
        "Content-type":"application/json"
    }
})