在响应本机中从相机发送图像时遇到错误,但使用获取功能发送图像表单库效果很好?

时间:2019-08-26 09:40:42

标签: javascript react-native fetch

当我从图库发送图像时,它命中了一个API并保存了图像,但是当我从相机中获取图像时,它甚至没有命中了api,它直接进入了陷阱。

为了发送图像,我一直在使用获取http请求。在获取标头中,我指定了Accept和Content-Type标头信息。

fetch(API_URI + 'scan/vin', {
      method: "POST",
      headers: {
        'Accept': 'application/json',
        'Content-Type': 'multipart/form-data;
  },
      body: file
    })
      .then(response =>response.json())
      .then(response => {
        console.log('image response',response)
      })

0 个答案:

没有答案