索引签名
# 索引签名
索引签名是 TypeScript 中一个强大的特性,它允许我们在对象和类中使用动态的属性名称。通常情况下,我们会在对象或类中定义固定的属性,但有时我们需要处理具有动态属性名称的情况。这时,索引签名就派上了用场。
# 索引签名的定义和作用
- 字符串索引
{
[index: string]: type;
}
1
2
3
4
2
3
4
- 数字索引
{
[index: number]: type;
}
1
2
3
4
2
3
4
索引签名的作用是允许我们动态地添加和访问对象的属性。 通过使用索引签名,我们可以在编译时无法确定具体属性名称的情况下,仍然能够安全地操作对象的属性。
# 字符串索引和数字索引区别
字符串索引:使用字符串作为索引来访问对象的属性。这种索引方式通常用于需要动态添加属性的情况,例如处理从外部数据源获取的数据
interface MyObject {
[key: string]: string;
}
const obj: MyObject = {};
obj["name"] = "John";
obj["age"] = "30";
console.log(obj["name"]); // 输出: John
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
数字索引:使用数字作为索引来访问对象的属性。这种索引方式通常用于处理类似数组的集合,例如按顺序存储的数据。
interface MyArray {
[index: number]: string;
}
const arr: MyArray = [];
arr[0] = "apple";
arr[1] = "banana";
console.log(arr[0]); // 输出: apple
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
在使用索引签名时,不能同时定义字符串索引和数字索引
编辑 (opens new window)
上次更新: 2023/08/16, 13:48:07