http POST请求响应带有" status":200但是有一个空对象

时间:2018-05-10 13:32:07

标签: javascript reactjs http react-native

我正在尝试使用带有HTTP POST请求的API,它似乎可以正常工作,但是当我得到响应时,它是空的。

API应在正文中接收base64编码图像。

参数imageToRead来自与Camerareact-native-camera组件一起返回的承诺。我不确定那里可能有问题吗?

这是内容: imageToRead = "/var/mobile/Containers/Data/Application/01B81FC9-B171-11GB-9B48-9D06F89B175A/Documents/3A997ACD-D63C-41BD-9041-FDB834A0672A.jpg"

此API还可以接收formData文件以及我如何测试它,并且在Node环境中运行良好。但由于我的应用程序是本机iOS应用程序,我不得不使用其他工具(如React Native)并且不能使用相同的工具。

在节点中测试API的代码:

var formData = {image: fs.createReadStream('/Users/Desktop/APITest/img/testOCR8.jpg')};
request.post({
url:'${url}', 
formData: formData},
(err, httpResponse, body) => {
    if (err) {
        return console.error('upload failed:', err);
    }
    console.log(body);

});

您可以看到我使用fs.createReadStream模块中的fs来创建文件流,然后在请求正文中使用它。 我无法使用React Native复制相同的东西(如果你有一个解决方案,所以我可以用React Native做它会更好!!)

所以我尝试了不同的方式并尝试将camera.capture()方法中的文件编码为react-native-camerabase64并将其放在体内,但我得到的响应是空的,没有任何错误,只是一个空对象。

使用React Native的代码:

recognise = (imageToRead) => {
    RNFetchBlob.fs.readFile(imageToRead , 'base64')
      .then((data) => {
        fetch('${url}',{
        method: "POST",
        headers: {
           'Accept': 'application/json',
           'Content-Type': 'application/json'
        },
        body: data // the body contain the encoded image
        })
      .then((res) => {  // promise returned with the response from the API
        console.log(`i am the base64Image: ${data}`)
        console.log('i am response', res)
      })  
      .catch((errInFetch) => { // catch any error in the API
        console.log('i am error:', errInFetch)
      })
    })
    .catch((err) => {
      console.log(err);
    })
  }

响应:

{ type: 'default',
  status: 200,
  ok: true,
  statusText: undefined,
  headers: 
   { map: 
      { server: [ 'nginx/1.10.3' ],
        'content-type': [ 'application/json; charset="utf-8"' ],
        'access-control-allow-origin': [ '*' ],
        date: [ 'Thu, 10 May 2018 10:17:48 GMT' ],
        'access-control-allow-headers': [ 'x-requested-with' ],
        'content-encoding': [ 'gzip' ],
        'content-length': [ '237' ],
        connection: [ 'keep-alive' ] } },
  url: 'https://api.openalpr.com/v2/recognize_bytes?secret_key=key&country=eu',
  _bodyInit: 
   { _data: 
      { size: 371,
        blobId: '5080ACA4-5D13-469C-B755-96B06A161FC6',
        type: 'application/json',
        offset: 0,
        name: 'recognize_bytes' } },
  _bodyBlob: 
   { _data: 
      { size: 371,
        blobId: '5080ACA4-5D13-469C-B755-96B06A161FC6',
        type: 'application/json',
        offset: 0,
        name: 'recognize_bytes' } } }

我希望有人可以帮忙解决这个问题。我已经和它斗争了很长时间。

3 个答案:

答案 0 :(得分:1)

      .then((res) => { 
        console.log(`i am the base64Image: ${data}`)
        console.log('i am response', res)
        return res.json();
      })  
      .then(res => {
        console.log(res);
      })
      .catch((errInFetch) => { // catch any error in the API
        console.log('i am error:', errInFetch)
      })

Fetch响应体返回一个将由json()解析的Promise。

因此,您可以从res.json()获取实际数据。

答案 1 :(得分:1)

fetch返回包含响应的promise(Response对象)。那么你再次需要使用response.json()来解析它,它会返回解析JSON的承诺。

fetch(url, {
    body: JSON.stringify(data),
    cache: 'no-cache', 
    headers: {
      'user-agent': 'Mozilla/4.0 MDN Example',
      'content-type': 'application/json'
    },
    method: 'POST', // *GET, POST, PUT, DELETE, etc.
  })
  .then(response => response.json())

了解更多信息:read

答案 2 :(得分:0)

200状态是成功获取http请求。您的API应返回状态201以发布消息而不是200,例如:

res.status(201).send(data);

full example

also, you can look at the status 201 description