有没有办法在TypeScript中定义动态对象类型? 在下面的示例中,我想为" My Complex Type"定义一个类型。说:
类型对象"我的复杂类型"具有"任意数量的属性的对象"但这些属性的值必须是IValue类型。
// value interface
interface IValue {
prop:string
}
// My Complex Type
myType = {
field1:IValue
field2:IValue
.
.
.
fieldN:IValue
}
// Using My Complex Type
interface SomeType {
prop:My Complex Type
}
答案 0 :(得分:39)
是的,可以实现这种行为,但方式略有不同。您只需要使用typescript接口,例如:
interface IValue {
prop: string
}
interface MyType {
[name: string]: IValue;
}
将用于例如:
var t: MyType = {};
t['field1'] = { prop: null };
t['field2'] = new DifferentType(); // compile-time error
...
var val = t['field1'];
val.prop = 'my prop value';
您不必创建typescript类,您需要的所有内容都是常规的javascript对象(在这种情况下为{})并使其实现接口MyType,因此它的行为类似于字典并为您提供编译时类型安全性。