作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对象:
Object
$$hashKey: "object:25"
id: 1
category: "Fruit"
name: "Apple"
color: "red"
__proto__: Object
Javascript( CoffeeScript ):
$scope.fruits = [
{id: 1, category: "Fruit", name: "Apple", color: "red"}
]
HTML:
<input type="search" ng-model="fruitSearch"/>
<div ng-repeat="i in filtro = (fruits | scFilter:fruitSearch)">
<div>{{i.id}}</div>
<div>{{i.category}}</div>
<div>{{i.name}}</div>
<div>{{i.color}}</div>
</div>
过滤代码(js/coffee)
.filter "scFilter", () ->
(collection, search) ->
if search
regexp = createAccentRegexp(search)
doesMatch = (txt) ->
(''+txt).match(regexp)
collection.filter (el) ->
if typeof el == 'object'
return true for att, value of el when (typeof value == 'string') && doesMatch(value)
doesMatch(el)
false
else
collection
所以我在这里想要的是仅过滤显示的元素(id、类别、名称和颜色),但由于某种原因,当我在输入上键入 25 时,对象仍然显示,因为他的 $$haskKey。
最佳答案
感谢您添加过滤器代码。解决方案应该很简单,只需在搜索匹配项时显式忽略 $$hashKey
即可:
.filter "scFilter", () ->
(collection, search) ->
return collection unless search
regexp = createAccentRegexp(search)
doesMatch = (txt) -> (''+txt).match(regexp)
collection.filter (el) ->
if typeof el == 'object'
return true for att, value of el when typeof(value) is 'string' and doesMatch(value) and att isnt '$$hashKey'
else
doesMatch(el)
我添加了一些小的重构:
doesMatch
函数更改为单行函数and
、is
和 isnt
主要更改是跳过 key
等于 $$hashkey
的任何属性
这尚未经过测试,所以我希望它对您有用。
关于javascript - 如何仅过滤显示的元素? (不要过滤$$hashKey),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40917119/
我是一名优秀的程序员,十分优秀!