fetch API POST 请求响应
fetch API POST request response
我试图在提交表单后从 post 请求中获取输出,但是在 post 表单
时我得到的是承诺响应而不是实际数据
fetch('localhost/clients', {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(formData)
}).then(response => {
console.info('Sending Message ...')
console.info(response.json())
}).catch (error => {
console.log(error)
})
数据被传递到后端,但是我想 return API 服务器输出的数据。
response.json()
returns 一个承诺。您需要像下面这样使用它。
fetch('localhost/clients', {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(formData)
}).then(response => {
return response.json();
}).then(jsonResponse => {
console.log(jsonResponse);
}).catch (error => {
console.log(error)
})
我试图在提交表单后从 post 请求中获取输出,但是在 post 表单
时我得到的是承诺响应而不是实际数据fetch('localhost/clients', {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(formData)
}).then(response => {
console.info('Sending Message ...')
console.info(response.json())
}).catch (error => {
console.log(error)
})
数据被传递到后端,但是我想 return API 服务器输出的数据。
response.json()
returns 一个承诺。您需要像下面这样使用它。
fetch('localhost/clients', {
method: 'post',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(formData)
}).then(response => {
return response.json();
}).then(jsonResponse => {
console.log(jsonResponse);
}).catch (error => {
console.log(error)
})