初识react(10)——axios使用 FormData 发送参数,后端接收不到数据

  在用 react 和后端交互时,曾出现 axios 使用 FormData 发送参数,后端接收不到数据的状况。在网上看到有人说是需要设置 header 头,但没什么作用。后来发现网上有这样一种写法:

 const instance = axios.create({
   withCredentials:true
});
instance.post(url,formData)
    .then(response=>{
    	console.log(response);
    }
    .catch(error=>{
        console.log(error);
     })

   亲测可行。希望对大家有所帮助。

你可能感兴趣的:(React)