我们如何在打字稿中获得嵌套对象类型
Posted
技术标签:
【中文标题】我们如何在打字稿中获得嵌套对象类型【英文标题】:How do we get nested object type in typescript 【发布时间】:2020-03-07 07:08:09 【问题描述】:我有以下打字稿界面:
UserInfo:
user:
options: ReadonlyArray<
values: ReadonlyArray<
value: string | null;
我想访问如何获得它的选项。 我尝试了下面的方法,但它对我不起作用
type options = ScreenQuery["UserInfo"]["user"]["options"];
【问题讨论】:
“它不起作用” 因为?错误或错误结果是什么? 【参考方案1】:我不知道你的 sn-p 中的 ScreenQuery
是什么,但如果 UserInfo
确实是一个有效的接口 (Playground link):
interface UserInfo
user:
options: ReadonlyArray<
values: ReadonlyArray<
value: string | null;
>
>
type options = UserInfo['user']['options'];
【讨论】:
以上是关于我们如何在打字稿中获得嵌套对象类型的主要内容,如果未能解决你的问题,请参考以下文章