gpt4 book ai didi

javascript - 我可以根据某个对象的属性值找到该对象吗?

转载 作者:行者123 更新时间:2023-12-03 12:25:42 25 4
gpt4 key购买 nike

我有一个母对象,里面充满了如下所示的对象:

profiles[ slug ] = {
slug : slug,
url : url,
el : $('#' + el),
position : this.el.position().left
};

我希望能够通过其 position 属性引用此数组中的对象。除了迭代所有对象并将每个对象的值与我正在搜索的值进行比较之外,是否有任何快速的方法可以做到这一点?

最佳答案

Underscore.js 有很多实用程序可以帮助进行这些类型的查找:http://underscorejs.org/#findWhere

示例代码:

var result = _.findWhere(profiles, {position: SEARCH_VALUE});

关于javascript - 我可以根据某个对象的属性值找到该对象吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24223891/

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