迹忆客 专注技术分享

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

TypeScript 中从另一个文件导入接口

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

要从 TypeScript 中的另一个文件导入接口:

  1. 从文件 A 中导出接口,例如 export interface Employee {}
  2. 将文件 B 中的接口导入为 import { Employee } from './another-file'
  3. 使用文件B中的界面。

下面是从名为 another-file.ts 的文件中导出接口的示例。

another-file.ts

// 👇️ named export
export interface Employee {
  id: number;
  name: string;
  salary: number;
}

以下是我们如何在名为 index.ts 的文件中导入 Employee 接口。

index.ts

// 👇️ named import
import { Employee } from './another-file';

const emp: Employee = {
  id: 1,
  name: 'James',
  salary: 100,
};

console.log(emp);

如果必须,请确保更正指向另一个文件模块的路径。 上面的示例假定 another-file.tsindex.ts 位于同一目录中。

例如,如果 another-file.ts 位于一个目录之上,则必须从 import {Employee} from '../another-file'

我们在导入时将接口的名称用大括号括起来——这称为命名导入。

TypeScript 使用模块的概念,就像 JavaScript 一样。

为了能够从不同的文件导入接口,必须使用命名或默认导出来导出它。

上面的示例使用命名导出和命名导入。

命名和默认导出和导入之间的主要区别是 - 每个文件可以有多个命名导出,但只能有一个默认导出。

让我们看一个示例,说明如何导入使用默认导出导出的接口。

这是 another-file.ts 的内容。

another-file.ts

// 👇️ default export
export default interface Employee {
  id: number;
  name: string;
  salary: number;
}

下面是我们如何使用默认导入来导入接口。

index.ts

// 👇️ default import
import Employee from './another-file';

const emp: Employee = {
  id: 1,
  name: 'James',
  salary: 100,
};

console.log(emp);

请注意 ,我们没有将导入内容用花括号括起来。

我们也可以在导入接口时使用不同的名称,例如 Foo

index.ts

// 👇️ default import
import Foo from './another-file';

const emp: Foo = {
  id: 1,
  name: 'James',
  salary: 100,
};

console.log(emp);

这有效,但令人困惑,应该避免。

根据我的经验,大多数真实世界的代码库只使用命名导出和导入,因为它们可以更轻松地利用 IDE 进行自动完成和自动导入。

我们也不必考虑使用默认导出或命名导出导出哪些成员。

我们也可以混合搭配。 以下是同时使用默认导出和命名导出的文件示例。

another-file.ts

// 👇️ default export
export default interface Employee {
  id: number;
  name: string;
  salary: number;
}

// 👇️ named export
export interface Person {
  name: string;
}

以下是我们将如何导入这两个接口。

index.ts

// 👇️ default and named imports
import Employee, { Person } from './another-file';

const emp: Employee = {
  id: 1,
  name: 'James',
  salary: 100,
};

console.log(emp);

const person: Person = {
  name: 'Alice',
};

console.log(person);

我们使用默认导入来导入 Employee 接口,并使用命名导入来导入 Person 接口。

请注意 ,每个文件只能有一个默认导出,但我们可以根据需要拥有任意多个命名导出。

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

本文地址:

相关文章

在 TypeScript 中返回一个 Promise

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

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

扫一扫阅读全部技术教程

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

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便