Typescript 从Array 继承时碰到的问题
Posted krucecoder
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Typescript 从Array 继承时碰到的问题相关的知识,希望对你有一定的参考价值。
class TestArray extends Array<number> { private _values; constructor(value) { super(); this._values = value; } TestMethod() { alert("hello, world"); } } var testArr = new TestArray([]); testArr.TestMethod();
上面的代码可以编译通过,运行时提示TestMethod不存在,在构造函数中加上Object["setPrototypeOf"](this, TestArray.prototype); 就好了。
相关的链接
https://stackoverflow.com/questions/14000645/extend-native-javascript-array
标准的Error, Array, Map 都有这个问题。
class TestArray extends Array<number> { private _values; constructor(value) { super(); this._values = value; Object["setPrototypeOf"](this, TestArray.prototype); } TestMethod() { alert("hello, world"); } } var testArr = new TestArray([]); testArr.TestMethod();
以上是关于Typescript 从Array 继承时碰到的问题的主要内容,如果未能解决你的问题,请参考以下文章