在 TypeScript 中,我们使用接口(Interfaces)来定义对象的类型。
在面向对象语言中,接口(Interfaces)是一个很重要的概念,它是对行为的抽象,而具体如何行动需要由类(classes)去实现(implements)。
TypeScript 中的接口是一个非常灵活的概念,除了可用于对类的一部分行为进行抽象以外,也常用于对「对象的形状(Shape)」进行描述。
interface Person {
name: string;
age: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
age: 25,
};
上面的例子中,我们定义了一个接口 Person
,接着定义了一个变量 xcatliu
,它的类型是 Person
。这样,我们就约束了 xcatliu
的形状必须和接口 Person
一致。
接口一般首字母大写。
定义的变量比接口少了一些属性是不允许的:
interface Person {
name: string;
age: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
};
// index.ts(6,5): error TS2322: Type '{ name: string; }' is not assignable to type 'Person'.
// Property 'age' is missing in type '{ name: string; }'.
多一些属性也是不允许的:
interface Person {
name: string;
age: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
age: 25,
website: 'http://xcatliu.com',
};
// index.ts(9,3): error TS2322: Type '{ name: string; age: number; github: string; }' is not assignable to type 'Person'.
// Object literal may only specify known properties, and 'github' does not exist in type 'Person'.
可见,赋值的时候,变量的形状必须和接口的形状保持一致。
有时我们希望不要完全匹配一个形状,那么可以用可选属性:
interface Person {
name: string;
age?: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
};
interface Person {
name: string;
age?: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
age: 25,
};
可选属性的含义是该属性可以不存在。
这时仍然不允许添加未定义的属性:
interface Person {
name: string;
age?: number;
}
let xcatliu: Person = {
name: 'Xcat Liu',
age: 25,
website: 'http://xcatliu.com',
};
// examples/playground/index.ts(9,3): error TS2322: Type '{ name: string; age: number; website: string; }' is not assignable to type 'Person'.
// Object literal may only specify known properties, and 'website' does not exist in type 'Person'.
有时候我们希望一个接口允许有任意的属性,可以使用如下方式:
interface Person {
name: string;
age?: number;
[propName: string]: any;
}
let xcatliu: Person = {
name: 'Xcat Liu',
website: 'http://xcatliu.com',
};
使用 [propName: string]
可以定义任意属性是 string
的值的类型。
需要注意的是,一旦定义了任意属性,那么确定属性和可选属性都必须是它的子属性:
interface Person {
name: string;
age?: number;
[propName: string]: string;
}
let xcatliu: Person = {
name: 'Xcat Liu',
age: 25,
website: 'http://xcatliu.com',
};
// index.ts(3,3): error TS2411: Property 'age' of type 'number' is not assignable to string index type 'string'.
// index.ts(7,5): error TS2322: Type '{ [x: string]: string | number; name: string; age: number; github: string; }' is not assignable to type 'Person'.
// Index signatures are incompatible.
// Type 'string | number' is not assignable to type 'string'.
// Type 'number' is not assignable to type 'string'.
上例中,任意属性的值允许是 string
,但是可选属性 age
的值却是 number
,number
不是 string
的子属性,所以报错了。
另外,在报错信息中可以看出,此时 { name: 'Xcat Liu', age: 25, website: 'http://xcatliu.com' }
的类型被推断成了 { [x: string]: string | number; name: string; age: number; github: string; }
,这是联合类型和接口的结合。
有时候我们希望对象中的一些字段只能在创建的时候被赋值,那么可以用 readonly
定义只读属性:
interface Person {
readonly id: number;
name: string;
age?: number;
[propName: string]: any;
}
let xcatliu: Person = {
id: 89757,
name: 'Xcat Liu',
website: 'http://xcatliu.com',
};
xcatliu.id = 9527;
// index.ts(14,9): error TS2540: Cannot assign to 'id' because it is a constant or a read-only property.
上例中,使用 readonly
定义的属性 id
初始化后,又被赋值了,所以报错了。
只读的约束存在于第一次给对象赋值的时候,而不是第一次给只读属性赋值的时候:
interface Person {
readonly id: number;
name: string;
age?: number;
[propName: string]: any;
}
let xcatliu: Person = {
name: 'Xcat Liu',
website: 'http://xcatliu.com',
};
xcatliu.id = 89757;
// index.ts(8,5): error TS2322: Type '{ name: string; website: string; }' is not assignable to type 'Person'.
// Property 'id' is missing in type '{ name: string; website: string; }'.
// index.ts(13,9): error TS2540: Cannot assign to 'id' because it is a constant or a read-only property.
上例中,报错信息有两处,第一处是在对 xcatliu
进行赋值的时候,没有给 id
赋值。
第二处是在给 xcatliu.id
赋值的时候,由于它是只读属性,所以报错了。