我想将数据发送到以下URL。我发送了从令牌验证中收到的令牌,但出现“错误请求”错误。你能帮我吗?
handleSubmit() {
fetch('http://127.0.0.1:8000/api/debt/create',{
method: 'POST',
headers: {
Authorization: `Bearer ${localStorage.getItem('id_token')}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
user: '1',
customer: '9',
debtKey: 'b1d9ef1b-45ad-4dc5-80cc-95f7994c0aae',
createduserKey: '0245abb9-2837-4f37-ae02-9be1b88887ef',
totalDebt: 789,
receivedAmount: 115,
description: 'Debt description',
paymentDate: '01.01.2019'
}),
}).then(response => {
console.log(response);
return response.json()
}).then(json => {
//this.setState({
// user:json
//});
});
console.log("form gönderme ekranına düştü");
}
答案 0 :(得分:0)
Authorization
是key
,应该用引号引起来。
headers: {
'Authorization': `Bearer ${localStorage.getItem('id_token')}`,
'Content-Type': 'application/json'
},