从 React 向 Django 发送 post 请求时出现 400(错误请求)
Posted
技术标签:
【中文标题】从 React 向 Django 发送 post 请求时出现 400(错误请求)【英文标题】:400 (Bad Request) when sending a post request from React to Django 【发布时间】:2021-12-21 18:37:59 【问题描述】:我正在尝试使用 react 和 redux 创建一个简单的登录页面。当我单击登录按钮时,我从两者都收到错误 400(Bad Request)
前端和后端。我正在使用 simplejwt 身份验证。
I have the following as part of the redux action (auth.jsx)
export const login = (email, password) => async dispatch =>
const config =
headers:
'Content-Type':'application/json'
;
const body = JSON.stringify(email, password);
try
const res = await axios.post(`$process.env.REACT_APP_API_URL/user/login`, body, config)
dispatch(
type: LOGIN_SUCCESS,
payload: res.data
)
dispatch(load_user());
catch (err)
dispatch(
type: LOGIN_FAIL,
)
console.log('You hit the wrong url')
Redux DevTools 在 try and catch 块中显示 catch `type(pin):"LOGIN_FAIL"`
Login.jsx
const Login = ( login ) =>
const [formData, setFormData] = useState(
email: '',
password: ''
);
const email, password = formData;
const onChange = e => setFormData ( ...formData, [e.target.name]: e.target.value);
const onSubmit = e =>
e.preventDefault();
login(email, password);
return(
<div className='container'>
<Form onSubmit=e => onSubmit(e)>
<Form.Group className="mb-3" controlId="formBasicEmail">
<Form.Control type="email" placeholder="example@email.com" onChange=e => onChange(e) required />
</Form.Group>
<Form.Group className="mb-3" controlId="formBasicPassword">
<Form.Control type="password" placeholder="Password" minLength='6' onChange=e => onChange(e) required />
</Form.Group>
<Button variant="primary" type="submit">
Login
</Button>
</Form>
</div>
)
// const mapStateToProps = state => (
// )
export default connect(null, login) (Login)
登录后台API可以从await axios.post(
$process.env.REACT_APP_API_URL/user/loginpart of the code where
看到
REACT_APP_API_URL=http://localhost:8000. The problem now is that when I send a post request by clicking on the submit button to login a user, the content of the form
email 和密码does is not passed along because the error on both frontend and backend is
POST http://localhost:8000/user/login 400(错误请求)`
我该如何解决这个问题,或者更确切地说,我做错了什么?
【问题讨论】:
由于您使用的是 axios,因此您不需要将其字符串化到正文。您可以直接发送 email, password
谢谢@LBald。即使没有字符串化错误也是一样的
你能从 django 发布后端日志吗?假设您在开发服务器上,原因应该清楚地显示在您运行 django 服务器的控制台中。
当然。在 django 控制台中,当我点击登录时显示的是 Bad Request: /user/login [09/Nov/2021 02:42:25] "POST /user/login HTTP/1.1" 400 86
似乎最有可能与请求正文结构有关。登录是自定义视图吗?如果是这样,您能否也发布目标 django 视图?
【参考方案1】:
登录 URL 错误 使用基于令牌的身份验证应该是 http://localhost:8000/rest-auth/login/。你需要休息框架。
【讨论】:
以上是关于从 React 向 Django 发送 post 请求时出现 400(错误请求)的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Axios 将 CSRF Cookie 从 React 发送到 Django Rest Framework
从 Vue.js 向 Django 发送 POST/DELETE 请求时禁止(未设置 CSRF cookie。)
从 React 应用程序向 Rocket 后端发送 POST 请求时出错返回失败
如何从 ReactJS Web 应用程序向 Django API 发送 POST 请求?