react在form-data表单中发送axios post请求,问题是500错误

k7fdbhmy  于 2023-08-04  发布在  iOS
关注(0)|答案(1)|浏览(118)

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);
    }
  };

字符串

eoigrqb6

eoigrqb61#

你好,你用快递吗?如果你是,你需要使用cors来允许外部连接到你的服务器。

相关问题