-1

在这里我只需要当检查值为true. 现在两者truefalse添加了。

angular.forEach($scope.usersDetails, function(value, key) {
    if (value.hasOwnProperty('checked')) {

    }
});
4

1 回答 1

0
angular.forEach($scope.usersDetails, function(value, key) {

    if (value.hasOwnProperty('checked') && value.checked) 
    {

    }
});
于 2016-11-02T13:01:21.640 回答