我一直在尝试将数据从Angular前端发送到Django后端,但数据似乎没有发送,我也不知道为什么。这是我在前端的代码...
const post_data = {
email: form.value.email,
password: form.value.password
}
const headers = new HttpHeaders({
'Content-Type': 'application/json',
});
const params = new HttpParams()
const options = {
headers,
params,
};
this.httpClient.post('https://my_website/signin/check/', post_data, options).subscribe(
result => { console.log(result); },
error => { },
() => {}
)
,然后在我的Django后端中,打印request.POST以查看数据是否正确发送,但没有任何显示。结果是:
<QueryDict: {}>
任何帮助都会很好。谢谢!