小编Nat*_*thi的帖子

属性“runStaticMethod”是“DemoClass”类型的静态成员

构建以下打字稿代码时出现以下错误。

Property 'runStaticMethod' is a static member of type 'DemoClass'
Run Code Online (Sandbox Code Playgroud)

打字稿代码:

Property 'runStaticMethod' is a static member of type 'DemoClass'
Run Code Online (Sandbox Code Playgroud)

console构建上述typescript代码时出现以下错误。但是javascript代码按预期运行。

控制台错误:

Chitty:tsc NatarajanG$ tsc
src/index.ts:5:19 - error TS2576: Property 'runStaticMethod' is a static member of type 'DemoClass'

5         this.demo.runStaticMethod();
                    ~~~~~~~~~~~~~~~

Chitty:tsc NatarajanG$ 

Run Code Online (Sandbox Code Playgroud)

static typescript

10
推荐指数
1
解决办法
6832
查看次数

如何在Typescript中获取对象的哈希值?

如何在打字稿中获取对象的哈希值。

例如 :

let user:any = {name:'tempuser', age:'29'};
let anotheruser:any = {name:'iam', age:'29'};
if( Object.GetHashCode(user) === Object.GetHashCode(anotheruser)){
   alert('equal');
}
Run Code Online (Sandbox Code Playgroud)

我们还可以识别对象是否被修改。

typescript ecmascript-6

3
推荐指数
3
解决办法
8904
查看次数

标签 统计

typescript ×2

ecmascript-6 ×1

static ×1