迹忆客 专注技术分享

当前位置:主页 > 学无止境 > WEB前端 >

在 TypeScript 中通过属性值查找数组中的对象

作者:迹忆客 最近更新:2023/01/08 浏览次数:

按属性值在数组中查找对象:

  1. 在数组上调用 find() 方法。
  2. 在每次迭代中,检查值是否满足条件。
  3. find() 方法返回数组中满足条件的第一个值。
const arr = [
  { id: 1, language: 'typescript' },
  { id: 2, language: 'javascript' },
  { id: 3, language: 'typescript' },
];

// 查找值匹配条件的第一个对象
const first = arr.find((obj) => {
  return obj.id === 2;
});

// {id: 2, language: 'javascript'}
console.log(first);

// 查找多个值满足条件的对象
const all = arr.filter((obj) => {
  return obj.language === 'typescript';
});

// [{id: 1, language: 'typescript'}, {id: 3, language: 'typescript'}]
console.log(all);

我们传递给 Array.find 方法的函数被数组中的每个元素(对象)调用,直到它返回一个 true 或遍历整个数组。

在每次迭代中,我们检查对象中 id 属性的值是否等于 2。

如果条件返回 true,则 find() 方法返回相应的对象并终止后面条件的判断。

当只需要获取第一个匹配特定条件的对象时,这非常方便。

没有多余的迭代,因为一旦满足条件,find() 方法就会停止并返回对象。

如果我们传递给 find 方法的回调函数从未返回真值,则 find 方法返回 undefined。

const arr = [
  { id: 1, language: 'typescript' },
  { id: 2, language: 'javascript' },
  { id: 3, language: 'typescript' },
];

// {id: number; language: string;} | undefined
const first = arr.find((obj) => {
  return obj.id === 2;
});

请注意,第一个变量的类型要么是对象,要么是未定义的。

我们可以使用类型保护来缩小类型并能够访问对象的属性。

const arr = [
  { id: 1, language: 'typescript' },
  { id: 2, language: 'javascript' },
  { id: 3, language: 'typescript' },
];

// {id: number; language: string;} | undefined
const first = arr.find((obj) => {
  return obj.id === 2;
});

if (first) {
  // first 为对象
  console.log(first.language);
}

TypeScript 可以安全地将第一个变量的类型推断为 if 块中的对象。

使用 filter() 方法在数组中查找多个对象,其值满足条件。 filter 方法接受一个函数作为参数,并返回一个仅包含满足特定条件的元素的数组。

const arr = [
  { id: 1, language: 'typescript' },
  { id: 2, language: 'javascript' },
  { id: 3, language: 'typescript' },
];

// 查找多个值满足条件的对象
const all = arr.filter((obj) => {
  return obj.language === 'typescript';
});

// [{id: 1, language: 'typescript'}, {id: 3, language: 'typescript'}]
console.log(all);

我们传递给 Array.filter 方法的函数被数组中的每个元素调用。

如果函数返回一个真值,则元素将被添加到过滤器方法返回的数组中。

请注意,filter 方法将遍历整个数组,而不管条件满足多少次。

这样,我们就可以从对象数组中获取满足特定条件的多个对象。

换句话说,我们过滤数组以仅包含满足条件的对象。

如果我们传递给过滤器方法的回调函数从未返回真值,则过滤器方法返回一个空数组。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便