Network Request Failed

在react native项目中,有时候调用接口会出现这样的错误提示:“Network Request Failed”。

一.模拟器上报“Network Request Failed”解决办法,也是官网有提到的:

1. 在Info.plist中添加NSAppTransportSecurity类型Dictionary。 
2. 在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES

二.在一的基础之上已经做了更改,运行到真机就会报 “Network request failed” ,原因是这个项目处于测试阶段接口未发布,需要在你们公司路由器上配置host

时间: 2024-10-11 21:05:31

Network Request Failed的相关文章

React Native NetWork request failed

今天敲代码的时候被两个网络请求的问题搞了一天,不担心累而且心碎 记录一下,吃一堑长一智,不知道我老了再来看还能不能看懂 第一个问题:图片上传到服务器 这里代码就不贴出来了,使用的post提交的格式.同样的代码,在iOS上可以正常上传,在android上上传就是network request failed, 我把代码对比了半天就是一模一样,然后报这种无厘头的错误着实让我心碎,后来android调试,iOS调试搞得我 已经快疯了,最后才发现原来是是我传的数据不对,上传图片到服务器使用的是本地图片UR

react native TypeError network request failed

异常出现的原因:由IOS9引入的新特性造成的.iOS9引入了App Transport Security (ATS).这个新特性要求App内部访问网络必须使用Https协议.而我的项目使用的是Htttp协议.所以就报以上错误了. 解决方法是在项目中的info.plist文件中添加,App Transport Security Settings,然后再下面添加Allow Arbitrary Loads并把其boolean值设置为YES 如下图所示

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptabl

在使用AFNetworking 2.0  的时候本来一切很顺畅,但是中途遇到几个比较坑的地方 这里分享一下爬坑经历,忘读者不能速爬坑! 在发送请求后,NSURLSessionDataTask一直报错 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" AFURLResponseSerializat

[Linux]Centos git报错fatal: HTTP request failed

在使用git pull.git push.git clone会报类似例如以下的错误: error: The requested URL returned error: 401 Unauthorized while accessing https://git.oschina.net/zemo/demo.git/info/refs fatal: HTTP request failed 通常是因为git版本号的问题. 使用例如以下指令查看版本号: # git --version git version

NSLocalizedDescription=Request failed: unacceptable content-type: text/html 解决方法

使用AFNetworking请求一个网站出现了以下错误 Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo={com.alamofire.serialization.response.error.response=<NSHTTPURLResponse: 0x7fc688f3

Error Domain=com.alamofire.error.serialization.response Code=-1016 &quot;Request failed: unacceptable content-type: text/html&quot; 的问题原因及解决方案

Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html",此问题的原因就是使用的第三方框架AFNetworking 接口返回值类型不确定,由于服务器人员习惯于使用html文件所以将json文件也这么写了,导致没法解析 在模型类或者网络工具类中添加这句代码就能完美解决上述问题,建议不要直接修改AFNetw

iOS AFNetworking “Request failed: unacceptable content-type: text/html”问题

使用AFNetworking出现报错: error=Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable content-type: text/html" UserInfo=0x7fdfd8729680 {com.alamofire.serialization.response.error.response= { URL: http://172.1

php file_get_contents失败[function.file-get-contents]: failed to open stream: HTTP request failed!解决

在使用file_get_contents方法来获取远程文件时会出现 [function.file-get-contents]: failed to open stream: HTTP request failed! 错误 解决方法是:修改php.ini 中的allow_url_fopen = On 这样可以解决部分人的问题, 完美的解决方案还得修改user_agent="PHP"  ,将参数改为Mozilla/4.0 (compatible; MSIE 6.0; Windows NT

AFNetworking 遇到错误 Code=-1016 &quot;Request failed: unacceptable content-type: text/plain&quot;

在开发过程使用了AFNetworking库,版本2.x,先运行第一个官方例子(替换GET 后面的url即可): AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; [manager GET:@"http://example.com/resources.json" parameters:nil success:^(AFHTTPRequestOperation *operatio