TS2536: Type 'xxx' cannot be used to index type 'this'

发布于 2022-09-13 00:54:33 字数 1252 浏览 18 评论 0

父类的方法修改子类的属性,类型注释怎么写,试了很多写法,还是会报错

class A {
  animate<
    K extends keyof this,
    T extends {
      [key in K]: this[key] extends number ? this[key] : never;
    }
  >(props: Partial<T>) {

    const initialValue: Partial<T> = {}
    const changeValue: Partial<T> = {}

    for (let key in props) {
      changeValue[key] = this[key]
      changeValue[key] = props[key] - (this as any)[key]
    }

    // ...
  }
}

class B extends A {
  width: number
  heigth: number
  name: string
  constructor() {
    super();
    this.heigth = 20
    this.width = 20
    this.name = 'B'
  }
}

const b = new B();

b.animate({
  width: 40,
  heigth: 40
})

Error message:

[tsl] ERROR in /typescript/app/index.ts(16,26)

  TS2536: Type 'Extract<keyof T, string>' cannot be used to index type 'this'.

[tsl] ERROR in /typescript/app/index.ts(17,7)

  TS2322: Type 'number' is not assignable to type 'T[Extract<keyof T, string>] | undefined'.

[tsl] ERROR in /typescript/app/index.ts(17,26)

  TS2362: The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

滴情不沾 2022-09-20 00:54:33
class A {
  [s: string]: number | string | ((props: Record<keyof this, number>) => void);

  animate(props: Record<keyof this, number>) {

    const initialValue: Partial<Record<keyof this, number>> = {}
    const changeValue: Partial<Record<keyof this, number>> = {}

    for (let key in props) {
      initialValue[key] = this[key] as number
      changeValue[key] = props[key] - (this[key] as number)
    }
  }
}

class B extends A {
  width: number
  height: number
  name: string

  constructor() {
    super();
    this.height = 20
    this.width = 20
    this.name = 'B'
  }
}

const b = new B();

b.animate({
  width: 40,
  height: 40
})


export default B

因为有个减法,这是最最最没办法的办法

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文