如何解决 TypeScript 中 Type 'Promise' is not assignable to type 错误
当我们尝试将具有 Promise
类型的值分配给具有不兼容类型的值时,会发生“Type 'Promise' is not assignable to type”错误。 要解决错误,需要在赋值之前解决 Promise
并使两个兼容类型的值。
下面是产生上述错误的一个示例。
// 👇️ function example(): Promise<string>
async function example() {
const result = await Promise.resolve('hello world');
return result;
}
// ⛔️ Error: Type 'Promise<string>' is
// not assignable to type 'string'.ts(2322)
const str: string = example();
该函数被标记为异步,所有异步函数都返回一个 Promise
。 上面示例中的函数的返回类型为 Promise<string>
。
TypeScript 告诉我们不能将
Promise<string>
类型的值赋给字符串类型的变量 str——赋值两端的类型不兼容。
要解决错误,请在分配之前解决 promise
。
async function example() {
const result = await Promise.resolve('hello world');
return result;
}
example().then((value) => {
const str: string = value;
console.log(str); // 👉️ "hello world"
});
在将值分配给 str 变量之前,我们使用 .then()
方法来解决承诺。
如果我们尝试在异步函数中解析 Promise
,请使用 await
语法。
错误的一个常见原因是我们忘记等待 promise。
async function example() {
// 👇️ forgot to use await
const result = Promise.resolve('hello world');
// ⛔️ Error: Type 'Promise<string>' is
// not assignable to type 'string'.ts(2322)
const greeting: string = result;
return greeting;
}
函数中的结果变量具有 Promise<string>
类型,我们试图将其分配给需要字符串的变量。
要解决该错误,需要在赋值之前使用 await
关键字来解析 promise。
async function example() {
// 👇️ const result: string
const result = await Promise.resolve('hello world');
const greeting: string = result;
return greeting;
}
我们使用了 await
关键字,现在 result 变量存储了一个字符串。
现在 greeting 和 result 变量具有兼容的类型,因此可以在不出现类型检查错误的情况下进行赋值。
这就是错误的原因——我们试图将 Promise<T>
类型的值分配给具有不同类型的值。
要解决这个错误,我们必须确保赋值语句左右两侧的值具有兼容的类型。
当使用 .then()
语法来解析 promise 时,请注意它是异步的,并且只能在传递给 then()
方法的回调函数中访问已解决的值。
async function example() {
const result = await Promise.resolve({
name: 'Tom',
country: 'Chile',
});
return result;
}
type Person = {
name: string;
country: string;
};
example().then((value) => {
const person: Person = value;
console.log(person); // 👉️ {name: 'Tom', country: 'Chile'}
});
// 👇️ code here runs before example().then() has finished
总结
当我们尝试将具有 Promise
类型的值分配给具有不兼容类型的值时,会发生“Type 'Promise' is not assignable to type”错误。 要解决错误,需要在赋值之前解决 Promise
并使两个兼容类型的值。
相关文章
在 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 中的类。