编程语言
首页 > 编程语言> > javascript – Angular ui-select只过滤一个字段

javascript – Angular ui-select只过滤一个字段

作者:互联网

情况:

我有一个角度应用程序使用angular ui-select来搜索和选择数据库中的人.

除了一件事,它工作得很好.
用户应该能够使用两个标准在人员之间进行过滤:姓名和电子邮件.

使用普通角度滤波器,我只能过滤其中一个.
如果我尝试过滤这两个字段,它就不再起作用了.

具有一个字段的工作示例:

 <ui-select multiple ng-model="database_people.selectedPeople" theme="select2" ng-disabled="disabled" style="width:100%">

    <ui-select-match placeholder="Select person...">{{$item.name}} &lt; {{$item.email}} &gt;</ui-select-match>

    <ui-select-choices repeat="person2 in list_people | filter: {name: $select.search, db_data_type_id: 5}">

            <div ng-bind-html="person2.name | highlight: $select.search"></div>

                <small>
                    email: <span ng-bind-html="''+person2.email | highlight: $select.search"></span>
               </small>

    </ui-select-choices>

 </ui-select>

在过滤器中没有两个字段的工作示例:

 <ui-select multiple ng-model="database_people.selectedPeople" theme="select2" ng-disabled="disabled" style="width:100%">

    <ui-select-match placeholder="Select person...">{{$item.name}} &lt; {{$item.email}} &gt;</ui-select-match>

    <ui-select-choices repeat="person2 in list_people | filter: {name: $select.search, email: $select.search, db_data_type_id: 5}">

            <div ng-bind-html="person2.name | highlight: $select.search"></div>

                <small>
                    email: <span ng-bind-html="''+person2.email | highlight: $select.search"></span>
               </small>

    </ui-select-choices>

 </ui-select>

奇怪的是它实际上只适用于第一个角色.
当我键入第一个字符时,它会在两个字段,名称和电子邮件中突出显示它.
但是当我键入第二个字符时,它就不再起作用了
(我在控制台中没有错误).

ANGULAR SAMPLES开始使用PROPSFILTER的ATTEMP:

 <ui-select multiple ng-model="database_people.selectedPeople" theme="select2" ng-disabled="disabled" style="width:100%">

    <ui-select-match placeholder="Select person...">{{$item.name}} &lt; {{$item.email}} &gt;</ui-select-match>

    <ui-select-choices repeat="person2 in list_people | propsFilter: {name: $select.search, email: $select.search, db_data_type_id: 5}">

            <div ng-bind-html="person2.name | highlight: $select.search"></div>

                <small>
                    email: <span ng-bind-html="''+person2.email | highlight: $select.search"></span>
               </small>

    </ui-select-choices>

 </ui-select>

在这种情况下,它完全破坏了,select2中没有数据,我在控制台中出现了一些错误:

Cannot read property 'toString' of null

Cannot read property 'length' of undefined

问题(S):

如何在多个字段之间进行过滤?
我可以使用普通过滤器吗?
或者我必须使用自定义过滤器?
但在这种情况下,为什么不能正常工作?

非常感谢你!

解决方法:

也许是因为相同的值($select.search)用于过滤器电子邮件和名称.

<ui-select-choices repeat="person2 in list_people | filter: {name: $select.search, email: $select.search, db_data_type_id: 5}">
...

这也将解释为什么它只适用于第一个角色.

为每个过滤器使用单独的值来解决此问题:

<ui-select-choices repeat="person2 in list_people | filter: {name: $select.search.name, email: $select.search.email, db_data_type_id: 5}">
...

标签:javascript,angularjs,filter,angular-ui
来源: https://codeday.me/bug/20191007/1866680.html