TypeScript 中如何检查 Null 值
要在 TypeScript 中检查 null,请使用比较来检查值是否等于或不等于 null,例如 if (myValue === null) {}
或 if (myValue !== null) {}
。 如果满足条件,则 if 块将运行。
type Color = string | null;
const color: Color = null;
// ✅ Check if null
if (color === null) {
console.log('value is equal to null');
} else {
console.log('value is NOT equal to null');
}
// ✅ Check if NOT equal to null
if (color !== null) {
console.log('value is NOT equal to null');
}
// ✅ Check if value is equal to null or undefined
if (color == null) {
console.log('value is equal to null or undefined');
}
// ✅ Check if value is NOT equal to null or undefined
if (color != null) {
console.log('value is NOT equal to null or undefined');
}
在我们的第一个 if
语句中,我们检查颜色变量是否存储空值。
第二个示例显示如何检查变量是否为空。
第三个示例使用松散等于 ==
而不是严格等于 ===
来检查变量是否等于 null 或 undefined。
这会检查 null 和 undefined,因为在使用松散等号 (==
) 时,null 等于 undefined。
console.log(null == undefined); // 👉️ true
上面的 if 语句用作 TypeScript 中的类型保护。
type Person = {
name: string | null;
};
const person: Person = {
name: null,
};
if (person.name !== null) {
// ✅ TypeScript knows person.name is string
// 👇️ (property) name: string
console.log(person.name);
console.log(person.name.toLowerCase());
}
Person 类型的 name 属性可以是字符串或 null。
在 if 语句中,我们检查属性是否不为空。
如果满足条件,TypeScript 知道唯一可能的其他类型是字符串,并允许我们使用特定于字符串的方法,例如
toLowerCase()
。
如果我们尝试直接调用 toLowerCase()
方法,而不检查属性是否为空,我们会得到一个错误。
type Person = {
name: string | null;
};
const person: Person = {
name: null,
};
// ⛔️ Error: Object is possibly 'null'.ts(2531)
console.log(person.name.toLowerCase())
我们还可以使用类型保护来检查属性是否为字符串,在这种情况下这将是更直接的方法。
type Person = {
name: string | null;
};
const person: Person = {
name: null,
};
if (typeof person.name === 'string') {
// ✅ TypeScript knows person.name is string
// 👇️ (property) name: string
console.log(person.name);
console.log(person.name.toLowerCase());
}
检查变量是否为 null 或 undefined 的一种较新方法是使用可选链接 (?.)
运算符。
type Person = {
name: string | null;
};
const person: Person = {
name: null,
};
console.log(person.name?.toLowerCase());
如果引用等于 null 或 undefined ,则可选链接 (?.)
运算符会短路而不是引发错误。
这就是为什么 TypeScript 允许我们检查 person.name 属性上是否存在 toLowerCase()
方法,即使它可能为空。
我们还可以使用这种方法来检查对象上是否存在深度嵌套的属性。
type Person = {
name?: {
first?: string | null;
};
};
const person: Person = {};
console.log(person?.name?.first?.toLowerCase());
如果引用等于 null 或 undefined,则可选链接运算符将短路并返回 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 中的类。