react-native fetch - request body - Unexpected EOF
问题 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, I mean I can see through backend logs that request is sent, whereas, right after the request, it shows error message. Here is my fetch method. var Url = "https://----------"; return fetch(Url, { method: "POST", headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' }, body: JSON.stringify({'number': '11111111-'}) }) .then