迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > TypeScript >

TypeScript 中 exclude 排除属性

作者:迹忆客 最近更新:2023/03/19 浏览次数:

本篇文章将讨论从 TypeScript 类型中 exclude 属性。exclude 属性用于从现有类型创建具有较少或修改属性的另一种类型。

在 TypeScript 中使用 Omit 从类型中 exclude 属性

TypeScript 允许用户从类型中 exclude 属性。用户必须使用 Omit 类型从现有类型中 exclude 属性。

Omit 类型从现有类型创建一个新类型。

语法:

Omit<Type_Name, 'property'>

例子:

type Info = {
    firstName: string,
    lastName: string,
    age: number,
    country: string,
};

type Info1 = Omit<Info, 'country'>;

const info1: Info1 = {
    firstName: 'John',
    lastName: 'Nash',
    age: 27,
};

console.log(info1);

输出:

{
    "firstName": "John",
    "lastName": "Nash",
    "age": 27
}

在上面的示例中,使用 Omit 从现有类型中引入了一个新类型。Info 类型有四个属性,而 Info1 有三个。

我们甚至可以从现有类型 Info 中引入一个新类型,并且可以排除多个属性。

例子:

type Info = {
    firstName: string,
    lastName: string,
    age: number,
    country: string,
};

type Info1 = Omit<Info, 'country'>;

const info1: Info1 = {
    firstName: 'John',
    lastName: 'Nash',
    age: 27,
};

type Info2 = Omit<Info, 'country' | 'age'>;

const info2: Info2 = {
    firstName: 'Stewen',
    lastName: 'Gold',
};

console.log(info1);
console.log(info2);

输出:

{
    "firstName": "John",
    "lastName": "Nash",
    "age": 27
}
{
    "firstName": "Stewen",
    "lastName": "Gold"
}

如上所示,类型 Info2 是类型 Info 的修改版本。请注意 Omit 类型中如何排除多个属性。

使用 Omit 修改 TypeScript 中的属性

TypeScript 允许用户修改属性。如果用户尝试修改没有 Omit 类型的类型,则会引发错误。

例子:

type Info = {
    firstName: string,
    lastName: string,
    age: number,
    country: string,
};

type Info1 = Info & {
    country: {
        countryName: string,
        cityName: string,
    };
};

const info1: Info1 = {
    firstName: 'John',
    lastName: 'Nash',
    age: 27,
    country: {
        countryName: 'China',
        cityName: 'Wuhan',
    },
}

此代码没有输出,因为对象 info1 属性 country 将引发错误。错误消息是:Type countryName and cityName is not assignable to type string

为了克服这个错误,用户必须使用 omit 类型来修改类型。

例子:

type Info = {
    firstName: string,
    lastName: string,
    age: number,
    country: string,
};

type Info1 = Omit<Info, 'country'> & {
    country: {
        countryName: string,
        cityName: string,
    };
};

const info1: Info1 = {
    firstName: 'John',
    lastName: 'Nash',
    age: 27,
    country: {
        countryName: 'China',
        cityName: 'Wuhan'
    },
}

console.log(info1);

输出:

{
    "firstName": "John",
    "lastName": "Nash",
    "age": 27,
    "country": {
        "countryName": "China",
        "cityName": "Wuhan"
    }
}

在上面的示例中,请注意 Info1 具有修改后的 country 类型。注意更新属性的语法。

使用 Omit 类型是消除复杂性和提高工作效率的好习惯。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

发布时间:2023/03/19 浏览次数:182 分类:TypeScript

本教程讨论如何在 TypeScript 中返回正确的 Promise。这将提供 TypeScript 中 Returns Promise 的完整编码示例,并完整演示每个步骤。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便