gpt4 book ai didi

javascript - lodash _.find 所有匹配项

转载 作者:IT王子 更新时间:2023-10-29 03:07:31 27 4
gpt4 key购买 nike

我有一个简单的函数来返回符合我的条件的对象。

代码如下:

    var res = _.find($state.get(), function(i) {
var match = i.name.match(re);
return match &&
(!i.restrict || i.restrict($rootScope.user));
});

我怎样才能找到所有符合这个标准的结果(不仅仅是第一个),而是所有结果。

感谢您的任何建议。

最佳答案

只需使用 _.filter - 它会返回所有匹配项。

_.filter

Iterates over elements of collection, returning an array of all elements predicate returns truthy for. The predicate is invoked with three arguments: (value, index|key, collection).

关于javascript - lodash _.find 所有匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35502450/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com