我是靠谱客的博主 寂寞火,最近开发中收集的这篇文章主要介绍Ts报错:Type ‘Function | undefined‘ is not assignable to type ‘Function‘;Cannot invoke an object,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

报错
Type ‘Function | undefined’ is not assignable to type ‘Function’.
Type ‘undefined’ is not assignable to type ‘Function’.

意思是:
类型’Function | undefined’不能赋值给类型’Function’。
类型’undefined’不能赋值给类型’Function’。

解决:将类型定义为Function | undefined

 const myFun: Function |undefined = ...

使用该函数时报错:
Cannot invoke an object which is possibly ‘undefined’.

意思是:
不能调用可能是“未定义”的对象。

使用typescript类型断言
类型断言(Type Assertion): 可以用来手动指定一个值的类型
语法:
值 as 类型 tsx中只能用这种方式

(myFunas Function)()

最后

以上就是寂寞火为你收集整理的Ts报错:Type ‘Function | undefined‘ is not assignable to type ‘Function‘;Cannot invoke an object的全部内容,希望文章能够帮你解决Ts报错:Type ‘Function | undefined‘ is not assignable to type ‘Function‘;Cannot invoke an object所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部