AngularJS:根据内部数组对象字段进行过滤



我有以下数据:

organizations:[{
                name: "foo",
                contacts: [{
                             firstName = "John",
                             lastName = "Doe",
                             email = "john.doe@email.com"
                          },...]
               },...]

然后我有一个表,列出了所有组织,我想知道是否可以根据firstName过滤器或电子邮件过滤器过滤表中的行。

例如,我有这样的代码:

<input type="text" id="name" ng-model="search.name">
<tr ng-repeat="organization in organizations | filter:search">
    <td>{{organization.name}}</td>
    <td>{{client.contacts[0].firstName}} {{ client.contacts[0].lastName }}</td>
    <td>{{client.contacts[0].email}}</td>
</tr>

它只能通过"name"字段进行筛选。我试过这样的东西:

<input type="text" id="firstName" ng-model="search.contacts">

但它在联系人数组中对象的所有字段中进行搜索,但我想具体按firstName进行搜索。我该怎么办?

使用类似filter:filterBy的过滤函数。

示例(依赖于underline.js):

scope.filterBy = function(row) {
    return !!_.where(row.contacts, {firstName:scope.search.name}).length;
}

相关内容

  • 没有找到相关文章

最新更新