react-native fetch - request body - Unexpected EOF

前端 未结 2 404
醉话见心
醉话见心 2021-01-27 07:22

in my react-native application, I\'m trying to make fetch request with body. But, I get error message of unexpected EOF. Actually, the request is made,

2条回答
  •  旧巷少年郎
    2021-01-27 07:48

    I would say that it fails on this line: response.json() Are you sure that your response is a valid JSON?

    Try testing the response with Postman or add .catch(e => console.log(e)) before done();

提交回复
热议问题