所以我正在努力将部分 Kendo UI 库转换为 TypeScript,但我被困在 Model 类上。问题是指定字段的方式。
给定以下数组:
function someModelFields() {
return {
Id: { editable: false, nullable: false, defaultValue: emptyGuid },
ScenarioId: { editable: false, nullable: false, defaultValue: emptyGuid },
UnitId: { editable: false, nullable: false },
UnitNumber: { type: "string", editable: false },
SquareFootage: { type: "number", editable: false }
};
};
...我将如何在 TypeScript 中对此进行建模,其中属性名称可以是任何东西,但属性的类型是已知的?这是我到目前为止所拥有的:
export module Kendo {
export module Data {
export class FieldTypeEnum {
static string: string;
static number: string;
static boolean: string;
static date: string;
}
export class ValidationDefinition {
required: bool;
}
export class FieldDefinition {
defaultValue: string;
editable: bool;
nullable: bool;
parse: () => any;
type: FieldTypeEnum;
validation: ValidationDefinition;
}
export class ModelDefinition {
id: string;
fields: any[];
}
我知道“字段”的定义是错误的,并且我知道我在 ModelDefinition.fields 和 FieldDefinition 类型的动态属性名之间缺少一个类型。
想法?提前致谢!