我有一个类似下面的JSON:
var data = [
{
"id": 1,
"name"; "Test1",
"isPending": "false",
"isCompleted": "true",
"isRequired": "true",
"location": [
{
"city": "London",
},
{
"city": "New York",
}
]
},
{
"id": 2,
"name"; "Test2",
"isPending": "false",
"isCompleted": "false",
"isRequired": "true",
"location": [
{
"city": "Mumbai",
},
{
"city": "New York",
}
]
}
}
..
..
];
我想为下面的字段设置5个复选框:
1.Mumbai
2.伦敦
我正在使用ng-repeat显示数据。
如何在AngularJS中应用具有多个字段复选框的过滤器。基本上它应该作为OR运算符。