在Typescript中,要访问动态/函数类的属性,可以使用以下几种方式:
interface MyClass {
name: string;
}
function foo(obj: any) {
// 断言obj为MyClass类型
const myObj = obj as MyClass;
console.log(myObj.name);
}
const obj = { name: "John" };
foo(obj);
这种方法需要确保对象的属性与断言的类型相匹配,否则可能会导致运行时错误。
interface MyClass {
name?: string;
}
function foo(obj: MyClass) {
console.log(obj?.name);
}
const obj = { name: "John" };
foo(obj);
在上述示例中,如果obj为null或undefined,访问obj.name时不会引发错误,而是返回undefined。
interface MyObject {
[key: string]: string;
}
const obj: MyObject = {
name: "John",
age: "30"
};
console.log(obj["name"]); // 输出 "John"
console.log(obj["age"]); // 输出 "30"
在这种情况下,我们定义了一个索引签名[key: string],表示可以使用任意字符串作为属性名来访问对象的属性。
总结: 在Typescript中访问动态/函数类的属性,可以使用类型断言、可选链操作符或索引签名等方式。具体选择哪种方式取决于对象属性的类型和是否为动态添加的属性。
领取专属 10元无门槛券
手把手带您无忧上云