I′ve came across the following error.
At the moment I developing an Android App with React Native therefore I′m planning to use fetch for doing a post request for me.
fetch("https://XXreachable-domainXX.de/api/test", {
method: "post",
body: JSON.stringify({
param: 'param',
param1: 'param',
})
}
)
.then((response) = > response.json()
)
.
then((responseData) = > {
ToastAndroid.show(
"Response Body -> " + JSON.stringify(responseData.message), ToastAndroid.SHORT
)
})
.
catch((error) = > {
console.warn(error);
})
;
The app now throws an error:
TypeError: Network request failed
When I change the code to a GET-Request it′s working fine, in the browser with a window.alert() as a return it′s cool and also the chrome extension Postman returns data correctly.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…