我正在为我的一个项目使用 angularjs。我正在尝试实现过滤功能。
我正在使用下面的代码构建过滤器复选框
<div class="checkbox" ng-repeat="incidentType in keywords.incidentType">
<label><input type="checkbox" value={{incidentType}}>{{incidentType}}</label>
</div>
结果如下图所示
在选中或取消选中复选框时,我需要创建一个如下所示的对象。基于这个 json 对象,我将向服务器发送请求以获取匹配的数据。
{
"application": [
"Athena",
"EWS"
],
"incidentType": [
"Publishing Failure",
"Security Failure"
]
}
关于如何在 angularjs 中实现这一点的任何想法。任何帮助深表感谢。