TypeScript 中 Type 'null' is not assignable to type 问题解决
使用联合类型来解决 TypeScript 中的“Type 'null' is not assignable to type”错误,例如 name: string | null。 特定值的类型必须接受 null,因为如果不接受并且您在 tsconfig.json 中启用了 strictNullChecks,则类型检查器会抛出错误。
以下是错误发生方式的 2 个示例。
// 函数返回值设置为对象
function getObj(): Record<string, string> {
if (Math.random() > 0.5) {
// 错误 Type 'null' is not assignable to type
// 'Record<string, string>'.ts(2322)
return null;
}
return { name: 'Tom' };
}
interface Person {
name: string; // 名称属性设置为字符串
}
const obj: Person = { name: 'Tom' };
// Type 'null' is not assignable to type 'string'.ts(2322)
obj.name = null;
第一个示例中的函数返回 null 值或对象,但我们没有指定该函数可能返回 null。
第二个示例中的对象具有 name 属性的字符串类型,但我们试图将属性设置为 null 并得到错误。
可以使用联合类型来解决错误。
function getObj(): Record<string, string> | null {
if (Math.random() > 0.5) {
return null;
}
return { name: 'Tom' };
}
interface Person {
// 👇 使用 union
name: string | null;
}
const obj: Person = { name: 'Tom' };
obj.name = null;
我们使用联合类型将函数的返回值设置为具有字符串键和值的对象或 null。
这种方法允许我们从函数返回一个对象或空值。
在第二个示例中,我们将对象中的 name 属性设置为字符串类型或 null
现在我们可以将属性设置为 null 而不会出现错误。
如果必须访问 name 属性,例如 要对其调用 toLowerCase() 方法,必须使用类型保护,因为该属性可能为 null。
interface Person {
// 使用 union
name: string | null;
}
const obj: Person = { name: 'Tom' };
// Error: Object is possibly 'null'.ts(2531)
obj.name.toLowerCase();
可以用一个简单的类型保护来解决这个问题。
interface Person {
// 使用 union
name: string | null;
}
const obj: Person = { name: 'Tom' };
if (obj.name !== null) {
// 现在 obj.name 是字符串
console.log(obj.name.toLowerCase());
}
可以通过在 tsconfig.json 文件中将 strictNullChecks 设置为 false 来屏蔽“Type 'null' is not assignable to type”错误。
{
"compilerOptions": {
"strictNullChecks": false,
// ... 重置
}
}
当 strictNullChecks 设置为 false 时,语言会忽略 null 和 undefined。
这是不可取的,因为它可能会导致运行时出现意外错误。
当我们将 strictNullChecks 设置为 true 时,null 和 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 中的类。