即使Postman工作,Axios Post请求也不起作用

时间:2019-07-25 08:35:26

标签: asp.net-web-api axios

我可以通过邮递员发送发帖请求,但是axios发帖不起作用。

enter image description here

我认为这是由于内容类型所致,我试图像这样更改它,但仍然无法正常工作。

axios.post('http://localhost:57812/api/login/CheckOTP', {
   OtpCode:1,
   DeviceId:1234
},
     {
    headers :  {
        'Content-Type': 'application/x-www-form-urlencode',
    }
}
          )
  .then(function (response) {
    console.log(response);
  })
  .catch(function (error) {
    console.log(error);
  });

这给了我们一个错误,即使我已经传递了一个有效的OtpCode,也必须输入OtpCode。

0 个答案:

没有答案