TypeScript报错:ts(2683)“this” 隐式具有类型 “any”,因为它没有类型注释。
例:
function onePeopleFun( num: number, name: string) {
this.num = num
this.name = name
}
可以改为
function onePeopleFun(this: any, num: number, name: string) {
this.num = num
this.name = name
}
TypeScript报错:ts(7009)其目标缺少构造签名的 “new” 表达式隐式具有 “any” 类型。
例:文章来源:https://www.toymoban.com/news/detail-603744.html
let onePeople = new onePeopleFun(123, "admin")
可以改为:文章来源地址https://www.toymoban.com/news/detail-603744.html
let onePeople = new (onePeopleFun as any)(123, "admin")
到了这里,关于TypeScript报错:ts(2683)“this“ 隐式具有类型 “any“,因为它没有类型注释。ts(7009)其目标缺少构造签名的 “new“ 表达式隐式具有 “any“ 类型。的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!