axios的get和post请求传headers、query、body等参数

axios的get和post请求传headers、query、body等参数

一、get传headers和query

// 方法一:get请求传query可以拼接在url后面,也可以放在params中
const age = 15;
const result = await axios.get(`/a?age=${age}&type=1`,{
  headers: {
    "Content-Type": testApiData.value.extContentType,
  },
});
// 方法二:get请求传query也可以放在params中
const query = {
  age: 15,
  type: 1,
};
const result = await axios.get("/a", {
  params: query,
  headers: {
    "Content-Type": testApiData.value.extContentType,
  },
});

2.post请求传query、body、headers

// 方法一
const result = await axios.post("/a", body, {
  headers: { "Content-Type": "application/x-www-form-urlencoded" },
  params: query
});
// 方法二
const query = {
  age: 15,
  type: 1,
};
const result = await axios({
  url: "/a",
  method: "post",
  data: body,
  params: query,
  headers: {
    "Content-Type": "application/json",
  },
});

本文来自网络,不代表协通编程立场,如若转载,请注明出处:https://net2asp.com/f54dca2286.html