当前位置:  开发笔记 > 编程语言 > 正文

TypeScript:继承类中静态方法的自引用返回类型

如何解决《TypeScript:继承类中静态方法的自引用返回类型》经验,为你挑选了1个好方法。

对于TypeScript 1.7中的Polymorphic,我在这里发现,我们可以在类中定义一个返回类型为的方法this,并自动地,任何扩展该类并继承方法的类,将其返回类型设置为各自的this类型.像这样:

class Model {
  save():this {    // return type: Model
    // save the current instance and return it
  }
}

class SomeModel extends Model {
  // inherits the save() method - return type: SomeModel
}

但是,我所追求的是拥有一个static带有返回类型的继承方法,引用类本身.最好用代码描述:

class Model {
  static getAll():Model[] {
    // return all recorded instances of Model as an array
  }

  save():this {
    // save the current instance and return it
  }
}

class SomeModel extends Model {
  // inherits the save() method - return type: SomeModel
  // also inherits getAll() - return type: Model (how can we make that SomeModel?)
}

也许我必须考虑一种不同的方式来实现它,因为thisTypeScript 1.7中的Polymorphic 不支持设计static方法.

编辑:我想我们会看到这个Github问题是如何结束的:https://github.com/Microsoft/TypeScript/issues/5863



1> mrm..:

这在TypeScript 2.0+中是可行的.通过使用内联{ new(): T }类型捕获this,您将获得您想要的:

class BaseModel {

  static getAll(this: { new(): T }): T[] {
    return [] // dummy impl
  }

  save(): this {
    return this  // dummy impl
  }
}

class SubModel extends BaseModel {
}

const sub = new SubModel()
const savedSub: SubModel = sub.save()
const savedSubs: SubModel[] = SubModel.getAll()

请注意,getAll仍然希望此类型没有参数.

有关详细信息,请参阅https://www.typescriptlang.org/docs/handbook/generics.html#using-class-types-in-generics和/sf/ask/17360801/

推荐阅读
小妖694_807
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有