来自iOS 9上Ionic App的慢速HTTP响应

时间:2016-02-15 01:56:29

标签: ios angularjs ionic-framework

在使用iOS 9.1版进行模拟时,我遇到了Ionic的问题。在2或3分钟后,我的HTTP GET请求从每个请求大约20毫秒减慢到每个请求大约60或90秒。当我用Fiddler测试它时,我的服务器响应正常,所以看起来问题出在iOS上。我没有在iOS日志中看到任何错误,HTTP响应非常慢。

function search(query) {
          var d = $q.defer();
          $http.get('http://www.myapp.com/api/cars').then(function (res) {
            d.resolve(res.data);
          }, function (err) {
            console.log(err);
            d.reject();
          });
          return d.promise;
        }

0 个答案:

没有答案