与对象角度js比较

问题描述 投票:0回答:1

我有一个 AngularJS 问题,我从 API JSON 收到 JSON 包含 prod URL 和 URL prerpod 我会调用这些 API 来检索新的 JSON,然后比较结果以验证,这与问题是相同的有 200 个 API 测试我该怎么做。
PS:我认为该方法的测试对象是相等的。

我有 100 个这样的对象:

{
    "ID": "1",
    "URL_preprod": "url1",
    "Preprod_bis": "url2",
    "prod": "url3",
}

我需要检查每个对象的调用结果是否相等。

  function callAtTimeout() {
   if ($scope.preprod && $scope.preprodBis) {
      angular.equals($scope.preprod,$scope.preprodBis);
      $scope.msg = "equals";
      }}



   $scope.test = function() {
 if (tnrArray) {
 for (var i = 0; i < tnrArray.length; i++) {

  var urlPreprod = tnrArray[i].URL_preprod;
    console.log(urlPreprod);
  $http.get(urlPreprod).success( function(response) {
    $scope.preprod = response;
    console.log(response);
   });

   var urlPreprodBis = tnrArray[i].Preprod_bis;
   console.log(urlPreprodBis);
   $http.get(urlPreprodBis).success( function(response) {
     $scope.preprodBis = response;
     console.log(response);
    });
     $timeout(callAtTimeout, 3000);
}
javascript json angularjs
1个回答
0
投票
var response1;

$http.get("/your/url").then(function(response) {
    response1 = response;
    return $http.get(response.prodUrl);
}).then(function(prodResponse) {
    console.log(prodResponse);
    console.log(_.isEqual(response1 , prodResponse));  // uses lodash
}).catch(function(badResponse) {
    console.log("oops something went wrong", badResponse);
})

这应该可行 - lodash 用于检查相等性

异步对 200 个 URL 执行此操作...

var urlList = ['/path/url1','/path/url2','/path/url3'];

angular.forEach(urlList, function(url) {

    var response1;

    $http.get(url).then(function(response) {
        response1 = response;
        return $http.get(response.prodUrl);
    }).then(function(prodResponse) {
        console.log(prodResponse);
        console.log(angular.equals(response1 , prodResponse));
    }).catch(function(badResponse) {
        console.log("oops something went wrong", badResponse);
    })
});
© www.soinside.com 2019 - 2024. All rights reserved.