angular.forEach(vm.details, function (data, index, array) {
                    angular.forEach(data, function (value, key) {
                        if (value == "") {
                            vm.details[index][key] = null;
                        }
                    })
                });

 

angular.forEach(vm.geographyPipelineDetails,function(data, index, array){

angular.forEach(data,function(value, key){

if(value ==""){

vm.geographyPipelineDetails[index][key]=null;

}

})

});

相关文章:

  • 2022-12-23
  • 2021-09-10
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2021-08-02
  • 2021-10-22
猜你喜欢
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案