T 的 Typescript 映射类型键,其中值的类型为 V

问题描述

我现在正在尝试为我正在制作的一些通用表单制作主行 ID 约束。我需要一个约束,允许人们在 T 上指定属性名称,以便该值的类型为 z。我会更详细地解释。

约束应该基本上意味着,“给我类型 T 上的任何属性名称,其中 T[propertyName] 的值是类型 V。”

这里重要的是让它与泛型一起工作。另外...允许之后通过属性键访问属性

interface Model {
  text?: string;
  id: number;
  uniqueId: string;
}

interface SomeProps<T> {
  model: T;
  primaryKey: KeyOfType<Model,number>; 
}

function testFunction(props: SomeProps<Model>) {
   console.log('The primary key is: '+ props.model[props.primaryKey]); // 99
}

testFunction({ model: { id: 99,text: 'hello universe',uniqueId: 'ssfwe3234'},primaryKey: 'id'});

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)