我的对象:
[
{
description: 'object1', id: 1
},
{
description: 'object2', id: 2
}
{
description: 'object3', id: 3
}
{
description: 'object4', id: 4
}
]
在我的下面的函数中,我传入描述以找到匹配的ID:
function pluckSavedView(action, view) {
console.log('action: ', action);
console.log('pluckSavedView: ', view); // view = 'object1'
var savedViews = retrieveSavedViews();
console.log('savedViews: ', savedViews);
if (action === 'delete') {
var delete_id = _.result(_.find(savedViews, function(description) {
return description === view;
}), 'id');
console.log('delete_id: ', delete_id); // should be '1', but is undefined
}
}
我试图使用lodash的find方法:https://lodash.com/docs#find
但是我的变量delete_id
未定义。
更新,Ramda是一个很好的库,可以像lodash那样做,但是在一个更实用的编程方式:) http://ramdajs.com/0.21.0/docs/
答案 0 :(得分:171)
lodash和ES5
var song = _.find(songs, {id:id});
lodash和ES6
let song = _.find(songs, {id});
的文档
答案 1 :(得分:137)
传递给回调的参数是数组的一个元素。数组的元素是{description: ..., id: ...}
形式的对象。
var delete_id = _.result(_.find(savedViews, function(obj) {
return obj.description === view;
}), 'id');
您链接到的文档(lodash v3)的另一种替代方法:
_.find(savedViews, 'description', view);
Lodash v4:
_.find(savedViews, ['description', view]);
答案 2 :(得分:23)
您知道在没有lodash
的情况下,您可以轻松完成此任务:
var delete_id = savedViews.filter(function (el) {
return el.description === view;
})[0].id;
答案 3 :(得分:9)
使用find
方法,您的回调将传递每个元素的值,如:
{
description: 'object1', id: 1
}
因此,您需要以下代码:
_.find(savedViews, function(o) {
return o.description === view;
})
答案 4 :(得分:6)
var delete_id = _(savedViews).where({ description : view }).get('0.id')
答案 5 :(得分:5)
您可以使用以下
import { find } from 'lodash'
然后使用以下命令从列表中返回整个对象(不仅是其键或值):
let match = find(savedViews, { 'ID': 'id to match'});
答案 6 :(得分:5)
您不需要Lodash或Ramda或任何其他额外的依赖项。
只需以功能性方式使用ES6 find()函数:
a=int(raw_input(“How many numbers do you want to print”))
有时,您需要使用3rd-party库来获取它们附带的所有好东西。但是,一般来说,请在不需要它们时避免依赖。依赖项可以:
答案 7 :(得分:5)
为此,在数组中找到给定的对象,这是_.find的基本用法示例
const array =
[
{
description: 'object1', id: 1
},
{
description: 'object2', id: 2
}
{
description: 'object3', id: 3
}
{
description: 'object4', id: 4
}
];
这会很好
q = _.find(array, {id:'4'}); // delete id
console.log(q); // {description: 'object4', id: 4}
_。find将有助于返回数组中的元素而不是索引。因此,如果您有一个对象数组,并且想通过某个键值对来找到数组中的单个对象,则_.find是完成此任务的正确工具。
答案 8 :(得分:3)
使用
导入lodash
$ npm i-保存lodash
var _ = require('lodash');
var objArrayList =
[
{ name: "user1"},
{ name: "user2"},
{ name: "user2"}
];
var Obj = _.find(objArrayList, { name: "user2" });
// Obj ==> { name: "user2"}
答案 9 :(得分:0)
根据名称获取ID
{
"roles": [
{
"id": 1,
"name": "admin",
},
{
"id": 3,
"name": "manager",
}
]
}
fetchIdBasingOnRole() {
const self = this;
if (this.employee.roles) {
var roleid = _.result(
_.find(this.getRoles, function(obj) {
return obj.name === self.employee.roles;
}),
"id"
);
}
return roleid;
},