gpt4 book ai didi

typescript - 在带有 typescript 的嵌套属性中使用 Partial

转载 作者:搜寻专家 更新时间:2023-10-30 20:31:45 24 4
gpt4 key购买 nike

假设我有这样一个类型;

interface State {
one: string,
two: {
three: {
four: string
},
five: string
}
}

我像这样使状态部分化 Partial<State>

但是我怎样才能对嵌套属性进行部分处理,例如,如果我想制作 two也是偏的。

我该怎么做?

最佳答案

您可以很容易地定义自己的 RecursivePartial 类型,这将使​​所有属性(包括嵌套属性)成为可选的:

type RecursivePartial<T> = {
[P in keyof T]?: RecursivePartial<T[P]>;
};

如果您只希望某些属性是部分属性,则可以将其与交集和Pick 一起使用:

type PartialExcept<T, K extends keyof T> = RecursivePartial<T> & Pick<T, K>;

对于 K 参数中指定的键,这将使所有内容都是可选的

关于typescript - 在带有 typescript 的嵌套属性中使用 Partial,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47914536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com