TypeScript 中 Array.find() 可能未定义错误
如果永远不会满足回调函数中实现的条件,或者我们尚未从回调函数返回值,则 Array.find()
方法会返回未定义的值。 要解决此问题,请使用类型保护来检查 find
在访问属性或方法之前是否返回了值。
下面是发生上述错误的一个示例。
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Carl' },
];
const result = arr.find((element) => {
return element.id === 2;
});
// ⛔️ Object is possibly 'undefined'.ts(2532)
result.name.toUpperCase();
下面是如何解决“Object is possibly undefined”错误的方法。
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Carl' },
];
const result = arr.find((element) => {
return element.id === 2;
});
// 👇️ result is object or undefined here
if (result !== undefined) {
// 👇️ result is an object here
console.log(result.name.toUpperCase());
}
if 语句用作简单的类型保护。
TypeScript 知道
find()
方法返回数组中满足条件的第一个值,如果条件从未满足则返回未定义的值。
如果我们从结果变量存储的可能值中排除未定义,编译器可以确定该变量是一个对象。
我们传递给 Array.find
方法的函数会为数组中的每个元素调用,直到它返回真值或遍历整个数组。
如果回调函数从不返回真值,则 find()
方法返回 undefined
。
find()
方法返回未定义的另一个常见原因是我们忘记从传递给find()
的回调函数中显式返回一个值。
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Carl' },
];
const result = arr.find((element) => {
element.id === 2;
});
console.log(result); // 👉️ undefined
请注意
,我们没有使用带有隐式返回的箭头函数,也没有使用return
语句。
这意味着回调函数将在每次调用时隐式返回 undefined,最终
find()
也将返回 undefined。
确保从回调函数返回一个值,通过使用箭头函数隐式返回或通过显式使用 return
语句。
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Carl' },
];
// 👇️ implicit return
const result = arr.find((element) => element.id === 2);
find()
方法返回未定义的替代解决方案是使用可选链接 ?.
。
const arr = [
{ id: 1, name: 'Alice' },
{ id: 2, name: 'Bob' },
{ id: 3, name: 'Carl' },
];
const result = arr.find((element) => element.id === 2);
// 👇️ "BOB"
console.log(result?.name.toUpperCase());
如果引用等于未定义或 null,则可选链接 ?.
运算符会短路,而不是抛出错误。
因此,如果结果变量的值为 undefined 或 null,运算符将短路并返回 undefined。
我们可以使用此方法访问可能具有未定义值或空值的深层嵌套属性,而不会出现“Object is possibly undefined”错误。
相关文章
在 AngularJs 中设置 Select From Typescript 的默认选项值
发布时间:2023/04/14 浏览次数:78 分类:Angular
-
本教程提供了在 AngularJs 中从 TypeScript 中设置 HTML 标记选择的默认选项的解释性解决方案。
在 Angular 中使用 TypeScript 的 getElementById 替换
发布时间:2023/04/14 浏览次数:153 分类:Angular
-
本教程指南提供了有关使用 TypeScript 在 Angular 中替换 document.getElementById 的简要说明。这也提供了在 Angular 中 getElementById 的最佳方法。
在 TypeScript 中使用 try..catch..finally 处理异常
发布时间:2023/03/19 浏览次数:181 分类:TypeScript
-
本文详细介绍了如何在 TypeScript 中使用 try..catch..finally 进行异常处理,并附有示例。
在 TypeScript 中使用 declare 关键字
发布时间:2023/03/19 浏览次数:97 分类:TypeScript
-
本教程指南通过特定的实现和编码示例深入了解了 TypeScript 中 declare 关键字的用途。
在 TypeScript 中 get 和 set
发布时间:2023/03/19 浏览次数:172 分类:TypeScript
-
本篇文章演示了类的 get 和 set 属性以及如何在 TypeScript 中实现它。
在 TypeScript 中格式化日期和时间
发布时间:2023/03/19 浏览次数:161 分类:TypeScript
-
本教程介绍内置对象 Date() 并讨论在 Typescript 中获取、设置和格式化日期和时间的各种方法。
在 TypeScript 中返回一个 Promise
发布时间:2023/03/19 浏览次数:182 分类:TypeScript
-
本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。
在 TypeScript 中定义函数回调的类型
发布时间:2023/03/19 浏览次数:221 分类:TypeScript
-
本教程说明了在 TypeScript 中为函数回调定义类型的解决方案。为了程序员的方便和方便,实施了不同的编码实践指南。
在 TypeScript 中把 JSON 对象转换为一个类
发布时间:2023/03/19 浏览次数:110 分类:TypeScript
-
本教程演示了如何将 JSON 对象转换为 TypeScript 中的类。