在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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();
|
请发表评论