我有一个包含一堆对象的数组。如果没有对象包含键“完成”的“真”值,我想禁用一个按钮。
//Here is the format for the array of objects:
$scope.todos = [{
task:$scope.task,
completed: false,
localID:Date.now(),
display: true
}];
//Here is the button I want to disable::
<button ng-click="clear()" class="btn" ng-disabled="">Clear Completed</button>
任何帮助表示赞赏。