4

从 URL 获取 json 时,我只想在数据有效时使用它。

到目前为止,我使用JSON的方法:

$http.get(
            'data/mydata.json'
                + "?rand=" + Math.random() * 10000,
            {cache: false}
        )
            .then(function (result) {

                try {
                    var jsonObject = JSON.parse(JSON.stringify(result.data)); // verify that json is valid
                    console.log(jsonObject)

                }
                catch (e) {
                    console.log(e) // gets called when parse didn't work
                }


            })

然而,在我可以进行解析之前,角度已经失败了

SyntaxError: Unexpected token { at Object.parse (native) at fromJson ( http://code.angularjs.org/1.2.0-rc.2/angular.js:908:14 ) at $HttpProvider.defaults.defaults.transformResponse ( http://code.angularjs.org/1.2.0-rc.2/angular.js:5735:18 ) 在http://code.angularjs.org/1.2.0-rc.2/angular.js: 5710:12 at Array.forEach (native) at forEach ( http://code.angularjs.org/1.2.0-rc.2/angular.js:224:11 ) at transformData ( http://code.angularjs. org/1.2.0-rc.2/angular.js:5709:3 ) 在 transformResponse ( http://code.angularjs.org/1.2.0-rc.2/angular.js:6328:17 ) 在 WrappedCallback ( http://code.angularjs.org/1.2.0-rc.2/angular.js:9106:81) 在http://code.angularjs.org/1.2.0-rc.2/angular.js:9192:26 angular.js:7861

如何防止 angular 引发此错误,或者我应该如何处理验证 JSON ?

更新:解决方案:

$http.get(
// url:
'data/mydata.json'
    + "?rand=" + Math.random() * 10000

,

// config:
{
    cache: false,
    transformResponse: function (data, headersGetter) {
        try {
            var jsonObject = JSON.parse(data); // verify that json is valid
            return jsonObject;
        }
        catch (e) {
            console.log("did not receive a valid Json: " + e)
        }
        return {};
    }
}
)
4

2 回答 2

5

transformResponse您可以在 $http中覆盖。检查这个其他答案

于 2013-10-17T10:03:56.207 回答
0

我一直在寻找同样的东西,而transformResponse完成了这项工作,但是,我不喜欢每次使用 $http.get() 甚至覆盖它时都使用 transformResponse ,因为有些 $http.get() 将是 json 而有些则不是。

所以,这是我的解决方案:

myApp.factory('httpHandler', function($http, $q) {            
  function createValidJsonRequest(httpRequest) {
    return {
      errorMessage: function (errorMessage) {
        var deferred = $q.defer();

        httpRequest
          .success(function (response) {
            if (response != undefined && typeof response == "object"){
                deferred.resolve(response);
            } else {
                alert(errorMessage + ": Result is not JSON type");
            }
          })
          .error(function(data) {
            deferred.reject(data);
            alert(errorMessage + ": Server Error");
          });

        return deferred.promise;
      }
    };
  }

  return {
    getJSON: function() {
      return createValidJsonRequest($http.get.apply(null, arguments));
    },
    postJSON: function() {
      return createValidJsonRequest($http.post.apply(null, arguments));
    }
  }
});


myApp.controller('MainCtrl', function($scope, httpHandler) {
  // Option 1
  httpHandler.getJSON(URL_USERS)
    .errorMessage("MainCtrl -> Users")
    .then(function(response) {
      $scope.users = response.users;
    });


  // Option 2 with catch
  httpHandler.getJSON(URL_NEWS)
    .errorMessage("MainCtrl -> News")
    .then(function(response) {
      $scope.news = response.news;
    })
    .catch(function(result){
      // do something in case of error
    });


  // Option 3 with POST and data
  httpHandler.postJSON(URL_SAVE_NEWS, { ... })
    .errorMessage("MainCtrl -> addNews")
    .then(function(response) {
         $scope.news.push(response.new);
    });

});
于 2015-07-30T22:40:26.940 回答