$scope.leftdept = function (m) {
console.log(m);
for (i = 0; i < m.length; i++) {
if ($scope.depts.indexOf(m[i].Dep_key) === -1) {
$scope.depts.push(m[i].Dep_key);
}
console.log($scope.depts);
}
答案 0 :(得分:1)
如果您只想删除对象的键,则可以这样操作:
m.forEach(function (dept) {
if(condition) // this is where you check if this department is checked or unchecked
delete dept[Dep_key];
});
当然,这只是一个模糊的示例,我将需要知道您的实际对象定义才能为您提供正确的答案。