enter image description here
我向 Postman 发了一个邮递请求如下,它会被邮寄好的。但是,按照如下方式编写react代码,服务器没有接收到500个错误的数据。是我的代码还是服务器有问题?
const postChallenge = async () => {
try {
const formData = new FormData();
const newData = {
title: 'title',
content: 'contents',
};
formData.append('requestBody', JSON.stringify(newData));
formData.append('image', null);
const res = await API.POST({
url: '(serverurl)',
data: formData,
headers: {
'Content-Type': 'multipart/form-data',
},
});
} catch (err) {
console.log(err);
}
};
字符串
1条答案
按热度按时间eoigrqb61#
你好,你用快递吗?如果你是,你需要使用cors来允许外部连接到你的服务器。