我有如下 JSON 对象
{
"txt_inc_Application": {
"EWS": true,
"EWindow": true
},
"txt_inc_IncidentType": {
"Brand Damage": true,
"Internal failure": true
}
}
我正在使用 angular.forEach 来获取值
$scope.filterFormula=function() {
angular.forEach($scope.filters, function(filterObj , filterIndex) {
angular.forEach(filterObj, function(value , key) {
console.log(value+"--"+key)
})
})
}
如何在循环中获取“txt_inc_Application”和“txt_inc_IncidentType”?
另外,当在 html 中调用 angular 函数时,为什么它会被执行两次?
{{filterFormula()}}