无法从 React axios post 的 Web API HttpPost 方法中接收数据

Unable to receive data in a Web API HttpPost method from React axios post

我的 Web API Post 方法在 Swagger 上运行良好,但是当我使用 axios 从我的 React App 发送 post 请求时,数据 [FromBody] 为空。 这是 Web API 方法。

[HttpPost]
[Route("api/employee/addMany")]
public IHttpActionResult Post([FromBody] dynamic data)  //my axios request hit this method but data is always null. I have tried passing without stringifying
  {
   Employee[] employees=JObject.Parse(data);
   //doing some stuff with employees
   return Ok();
  }

这里是 Axios post 请求代码


export function addEmployees(employees:Employee[]) {
  return axios.post(`api/employee/addMany`, { employees });
}

这里是请求拦截器,执行 Model Keys Pascalization 和 Stringifying 数据。

const pascalizeKeys = (obj:any):any => {
  if (Array.isArray(obj)) {
    return obj.map(v => pascalizeKeys(v));
  } else if (obj !== null && obj.constructor === Object) {
    return Object.keys(obj).reduce(
      (result, key) => ({
        ...result,
        [String(upperFirst(key))]: pascalizeKeys(obj[key]),
      }),
      {},
    );
  }
  return obj;
};

export function applyInterceptors(Axios:typeof axios){
  Axios.interceptors.request.use((request)=>{
    if(request.data){
      request.data = JSON.stringify(pascalizeKeys(request.data));
      return request;
    }
    return request;
  }
  )
}

尝试让 axios post 工作的事情:

  1. 设置headers
headers: {
          'content-type': 'application/json',
     }
  1. 尝试将您的 json 附加到请求的 dataparams 字段

  2. 如果您仍然无法获取数据,请在数据字段中将其作为新的formData发送

let formData = new FormData()

formdata.append('name', yourJson)

await axios({
  method: 'post',
  url: '/your/url',
  data: formData,
  headers: {
    'Content-Type': 'multipart/form-data',
  },
})

你现在应该可以通过你的请求得到它