TypeScript 对象类型
TypeScript 有一种特殊的语法来为对象进行类型化。
在我们的 JavaScript 对象章节 中了解更多关于对象的信息。
示例
const car: { type: string, model: string, year: number } = {
type: "Toyota",
model: "Corolla",
year: 2009
};
亲自尝试 »
这样的对象类型也可以单独编写,甚至可以重复使用,查看 接口 以了解更多详细信息。
类型推断
TypeScript 可以根据属性的值推断其类型。
示例
const car = {
type: "Toyota",
};
car.type = "Ford"; // 无错误
car.type = 2; // 错误:类型“number”无法分配给类型“string”。
亲自尝试 »
可选属性
可选属性是在对象定义中不必定义的属性。
没有可选属性的示例
const car: { type: string, mileage: number } = { // 错误:类型“{ type: string; }”中缺少属性“mileage”,但在类型“{ type: string; mileage: number; }”中需要。
type: "Toyota",
};
car.mileage = 2000;
带有可选属性的示例
const car: { type: string, mileage?: number } = { // 无错误
type: "Toyota"
};
car.mileage = 2000;
亲自尝试 »
索引签名
索引签名可用于没有定义属性列表的对象。
示例
const nameAgeMap: { [index: string]: number } = {};
nameAgeMap.Jack = 25; // 无错误
nameAgeMap.Mark = "Fifty"; // 错误:类型“string”无法分配给类型“number”。
亲自尝试 »
这样的索引签名也可以用工具类型来表示,例如 Record<string, number>
。
在我们的 TypeScript 工具类型 章节中了解更多关于此类工具类型的信息。