如何通过搜索对象属性的值来获取数组对象

时间:2018-01-18 16:34:02

标签: javascript arrays ecmascript-6

我有一个包含以下格式的对象的数组:

[ { _id: 5a60c891d4664d1c97b876e8, amountVotes: 0, title: 'A' },
  { _id: 5a60c891d4664d1c97b876e9, amountVotes: 0, title: 'B' },
  { _id: 5a60c891d4664d1c97b876ea, amountVotes: 0, title: 'C' },
  { _id: 5a60c891d4664d1c97b876eb, amountVotes: 0, title: 'D' } ]

我想通过查找其标题值来查找此数组的条目。例如,我想找到标题属性设置为'C'的对象。

0 个答案:

没有答案