本文介绍了类型“ObjectConstructor"上不存在属性“assign"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在我的应用程序中使用了 TypeScript,我在其中使用了函数:
I am using TypeScript in my application, where I use function:
Object.assign(this.success, success.json())
但是,在编译过程中,我收到以下错误:
However, during compilation, I receive the following error:
error TS2339: Property 'assign' does not exist on type 'ObjectConstructor'.
你知道我怎样才能摆脱这个错误吗?
Do you have any idea how can I get rid of this error?
推荐答案
您可以使用 输入断言,像这样:
You can use type assertion, like this:
(<any>Object).assign(this.success, success.json())
这篇关于类型“ObjectConstructor"上不存在属性“assign"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!