AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / coding / 问题 / 79006599
Accepted
four-eyes
four-eyes
Asked: 2024-09-20 19:44:28 +0800 CST2024-09-20 19:44:28 +0800 CST 2024-09-20 19:44:28 +0800 CST

在 TypeScript 中向派生类型添加另一个值

  • 772

我有这些界面

interface CommonAnimalProps {
    common: {
        size: number, 
        weight: number,
        origin: string,
    }
}

interface DogProps extends CommonAnimalProps {
    name: string
}

interface CatProps extends CommonAnimalProps {
    furious: boolean
}

interface BirdProps extends CommonAnimalProps {
    canFly: boolean
}

export enum AnimalType {
    dog = "dog",
    cat = "cat",
    bird = "bird",
}

export interface AnimalTypeToAnimalPropsMap {
    [AnimalType.dog]: (DogProps)[],
    [AnimalType.cat]: (CatProps)[],
    [AnimalType.bird]: (BirdProps)[]
}

export type AllAnimalValues<T> = T[keyof T]
export type AllAnimalTypesArray = AllAnimalValues<AnimalTypeToAnimalPropsMap>
export type AllAnimalTypes = AllAnimalValues<AnimalTypeToAnimalPropsMap>[0]
export type AllAnimalTypesArrayDiscriminating = AllAnimalTypes[]

这AllAnimalTypesArrayDiscriminating将导致数组看起来像这样

const foo: AllAnimalTypesArrayDiscriminating = [
    {
        name: "Bello",
        common: {
            size: 10,
            weight: 25,
            origin: "Knowhwere"

        },
    },
    {
        furious: true,
        common: {
            size: 3,
            weight: 5,
            origin: "Anywhere"

        },
    },
    {
        canFly: false,
        common: {
            size: 39,
            weight: 50,
            origin: "Somewhere"

        },
    },    
]

是否可以使用AllAnimalTypesArrayDiscriminating并从中创建一个新的类型/接口(AllAnimalTypesArrayDiscriminatingModified),其中结果数组中的每个元素bar都有另一个 prop(color: string)添加,CommonAnimalProps以便结果如下所示

const bar: AllAnimalTypesArrayDiscriminatingModified = [
  {
    name: "Bello",
    common: {
      size: 10,
      weight: 25,
      origin: "Knowhwere",
      color: 'red',

    },
  },
  {
    furious: true,
    common: {
      size: 3,
      weight: 5,
      origin: "Anywhere",
      color: 'brown',

    }
  }, {
    canFly: false,
    common: {
      size: 39,
      weight: 50,
      origin: "Somewhere",
      color: 'white',

    },
  }
];

请注意,我无法修改原始内容CommonAnimalProps以将其添加color为可选参数。我也无法编辑DogProps, CatProps, BirdProps。我正在寻找一种使用AllAnimalTypesArrayDiscriminating(或任何其他我未排除的类型)来添加此属性的方法。有办法做到这一点吗?

typescript
  • 1 1 个回答
  • 48 Views

1 个回答

  • Voted
  1. Best Answer
    jcalz
    2024-09-21T00:39:52+08:002024-09-21T00:39:52+08:00

    迄今为止最简单的方法就是使用交集将适当嵌套的成员添加到AllAnimalTypes:

    type AllAnimalTypesModified = AllAnimalTypes & { common: { color: string } };
    type AllAnimalTypesArrayDiscriminatingModified = AllAnimalTypesModified[];
    

    这会在示例中为您提供所需的行为:

    const bar: AllAnimalTypesArrayDiscriminatingModified = [
      {
        name: "Bello",
        common: { size: 10, weight: 25, origin: "Knowhwere", color: 'red' }
      },
      {
        furious: true,
        common: { size: 3, weight: 5, origin: "Anywhere", color: 'brown' }
      },
      {
        canFly: false,
        common: { size: 39, weight: 50, origin: "Somewhere", color: 'white' }
      }
    ];
    

    但请注意,这实际上并没有将该成员放入AllAnimalTypes union的每个成员中。它所做的只是说明,除了是一个AllAnimalTypes值之外,它还应该string在其common属性处具有 -valued 属性。

    因此,虽然例如DogProps & { common: { color: string } }或多或少等同于{name: string, common: { size: number, weight: number, origin: string, color: string } },但它并不是以那种方式表示的,并且根据您执行的操作类型,这种差异可能会很明显。

    如果您确实想计算该类型,以便生成的联合中的每个成员都具有一个嵌套属性,该属性与其他公共属性直接位于同一对象类型中,则需要进行更多类型调整。以下是其中一种方法:

    type AllAnimalTypesModified = AddCommonColor<AllAnimalTypes>;
    

    AddCommonColor实用程序类型在哪里

    type AddCommonColor<T extends CommonAnimalProps> =
      T extends unknown ? {
        [K in keyof T]: K extends "common" ? T[K] & { color: string } : T[K]
      } : never;
    

    这是一个分配条件类型。该类型T extends unknown ? ⋯T⋯ : never看起来像是无操作,因为所有类型都T扩展了unknown,但此类型的重点不是执行检查,而是将部分分配⋯T⋯给中的联合T。也就是说,我们希望AddCommonColor<X | Y | Z>评估为AddCommonColor<X> | AddCommonColor<Y> | AddCommonColor<Z>。

    我们为给定联合成员计算的实际类型是{ [K in keyof T]: K extends "common" ? T[K] & { color: string } : T[K] },这是一种映射类型common,除了与之相交的之外,所有属性均保持不变{color: string}。

    如果我们现在检查,AllAnimalTypesModified我们得到

    type AllAnimalTypesModified = {
      name: string;
      common: {
          size: number;
          weight: number;
          origin: string;
      } & {
          color: string;
      };
    } | {
      furious: boolean;
      common: {
          size: number;
          weight: number;
          origin: string;
      } & {
          color: string;
      };
    } | {
      canFly: boolean;
      common: {
          size: number;
          weight: number;
          origin: string;
      } & {
          color: string;
      };
    } 
    

    财产color位于common每个工会成员的财产中。即使这也不是您想要看到的方式;可以像这样摆脱这种交集:

    type AddCommonColor<T extends CommonAnimalProps> =
      T extends unknown ? {
        [K in keyof T]: K extends "common" ? {
          [P in "color" | keyof T[K]]: P extends keyof T[K] ? T[K][P] : string
        } : T[K]
      } : never;
    

    产生

    type AllAnimalTypesModified = {
        name: string;
        common: {
            color: string;
            size: number;
            weight: number;
            origin: string;
        };
    } | {
        furious: boolean;
        common: {
            color: string;
            size: number;
            weight: number;
            origin: string;
        };
    } | {
        canFly: boolean;
        common: {
            color: string;
            size: number;
            weight: number;
            origin: string;
        };
    }
    

    但这对于您的用例来说可能有些过度了。

    游乐场链接到代码

    • 1

相关问题

  • 为什么我们在条件语句中使用方括号“[]”?

  • Nestjs有关模块的问题

  • 如何获取文件的打字稿元数据?

  • 如何将数组转换为像这样的对象返回 const 类型?

  • “没有重载匹配”我的 Object.assign() 调用;我该如何修复它?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    Vue 3:创建时出错“预期标识符但发现‘导入’”[重复]

    • 1 个回答
  • Marko Smith

    为什么这个简单而小的 Java 代码在所有 Graal JVM 上的运行速度都快 30 倍,但在任何 Oracle JVM 上却不行?

    • 1 个回答
  • Marko Smith

    具有指定基础类型但没有枚举器的“枚举类”的用途是什么?

    • 1 个回答
  • Marko Smith

    如何修复未手动导入的模块的 MODULE_NOT_FOUND 错误?

    • 6 个回答
  • Marko Smith

    `(表达式,左值) = 右值` 在 C 或 C++ 中是有效的赋值吗?为什么有些编译器会接受/拒绝它?

    • 3 个回答
  • Marko Smith

    何时应使用 std::inplace_vector 而不是 std::vector?

    • 3 个回答
  • Marko Smith

    在 C++ 中,一个不执行任何操作的空程序需要 204KB 的堆,但在 C 中则不需要

    • 1 个回答
  • Marko Smith

    PowerBI 目前与 BigQuery 不兼容:Simba 驱动程序与 Windows 更新有关

    • 2 个回答
  • Marko Smith

    AdMob:MobileAds.initialize() - 对于某些设备,“java.lang.Integer 无法转换为 java.lang.String”

    • 1 个回答
  • Marko Smith

    我正在尝试仅使用海龟随机和数学模块来制作吃豆人游戏

    • 1 个回答
  • Martin Hope
    Aleksandr Dubinsky 为什么 InetAddress 上的 switch 模式匹配会失败,并出现“未涵盖所有可能的输入值”? 2024-12-23 06:56:21 +0800 CST
  • Martin Hope
    Phillip Borge 为什么这个简单而小的 Java 代码在所有 Graal JVM 上的运行速度都快 30 倍,但在任何 Oracle JVM 上却不行? 2024-12-12 20:46:46 +0800 CST
  • Martin Hope
    Oodini 具有指定基础类型但没有枚举器的“枚举类”的用途是什么? 2024-12-12 06:27:11 +0800 CST
  • Martin Hope
    sleeptightAnsiC `(表达式,左值) = 右值` 在 C 或 C++ 中是有效的赋值吗?为什么有些编译器会接受/拒绝它? 2024-11-09 07:18:53 +0800 CST
  • Martin Hope
    The Mad Gamer 何时应使用 std::inplace_vector 而不是 std::vector? 2024-10-29 23:01:00 +0800 CST
  • Martin Hope
    Chad Feller 在 5.2 版中,bash 条件语句中的 [[ .. ]] 中的分号现在是可选的吗? 2024-10-21 05:50:33 +0800 CST
  • Martin Hope
    Wrench 为什么双破折号 (--) 会导致此 MariaDB 子句评估为 true? 2024-05-05 13:37:20 +0800 CST
  • Martin Hope
    Waket Zheng 为什么 `dict(id=1, **{'id': 2})` 有时会引发 `KeyError: 'id'` 而不是 TypeError? 2024-05-04 14:19:19 +0800 CST
  • Martin Hope
    user924 AdMob:MobileAds.initialize() - 对于某些设备,“java.lang.Integer 无法转换为 java.lang.String” 2024-03-20 03:12:31 +0800 CST
  • Martin Hope
    MarkB 为什么 GCC 生成有条件执行 SIMD 实现的代码? 2024-02-17 06:17:14 +0800 CST

热门标签

python javascript c++ c# java typescript sql reactjs html

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve