React Native fetch不适用于特定URL

时间:2018-03-20 06:27:37

标签: react-native fetch react-native-android react-native-ios

网址:http://10.10.1.23:8085/LdapServices/ldapservice/signUp

体:

{ 
        "cn": " ",
        "sn": "abcd",
        "uid": "123123123",
        "userPassword": "test123",
        "applicationName":"app1"
}
  

以上请求完全可以从POSTMAN(Content-Type:application / json)完成,而且我得到了   反应得当。

fetch("http://10.10.1.23:8085/LdapServices/ldapservice/signUp", {  
      method: 'POST',
      headers: {
        'Content-Type': 'application/json',
      },
      body: JSON.stringify({
        cn              : "",
        sn              : "abcd",
        uid             : "123123123",
        userPassword    : "test123",
        applicationName : "app1"
      })
    }).then((response) => response.json())
    .then((responseJson) => {
      console.log(responseJson)      
    })
    .catch((error) => {      
      console.error(error);
    });
  

但是当我从我的反应本机应用程序中使用它时,它不是   给予任何回应。等了很久之后我才到了   “网络请求失败”消息。申请工作正常   使用任何其他网址。

0 个答案:

没有答案