从Axios到Django的400错误请求,必填字段

时间:2019-08-19 18:56:46

标签: javascript python django django-rest-framework axios

我正在尝试使用Axios从我的React前端发送POST请求

import axios from 'axios'
axios.post('http://server:port/auth/login', {
    username: 'admin', 
        password: 'MY_PASSWORD', 

}, {
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
        }
})
.then(response => { 
    console.log(response)
})
.catch(error => {
    console.log(error.response)
});

无论我做什么,我都会收到一个400错误的请求以回应:

"username":[This field is required],
"password":[This field is required]

Image of the error

我正在Django后端中使用Django REST framework进行身份验证。

使用Insomnia一切都可以正常工作,但是任何通过React的请求都会导致“错误请求”

Insomnia

django-cors-headers也已安装和配置。

1 个答案:

答案 0 :(得分:0)

在这里回答我自己的问题。

将解析器设置为JSONParser解决了该问题。

在项目范围内进行设置是最好的选择-

REST_FRAMEWORK = {
    'DEFAULT_PARSER_CLASSES': [
        'rest_framework.parsers.JSONParser',
    ]
}

在从Axios发送请求时,还将标头设置为json。

headers: {
    'Content-Type': 'application/json'
}

谢谢你的帮助!