美文网首页让前端飞
TypeScript——模块(3)

TypeScript——模块(3)

作者: 2o壹9 | 来源:发表于2019-12-13 16:10 被阅读0次

创建模块结构指导

尽可能地在顶层导出

用户应该更容易地使用你模块导出的内容。 嵌套层次过多会变得难以处理,因此仔细考虑一下如何组织你的代码。

从你的模块中导出一个命名空间就是一个增加嵌套的例子。 虽然命名空间有时候有它们的用处,在使用模块的时候它们额外地增加了一层。 这对用户来说是很不便的并且通常是多余的。

导出类的静态方法也有同样的问题 - 这个类本身就增加了一层嵌套。 除非它能方便表述或便于清晰使用,否则请考虑直接导出一个辅助方法。

如果仅导出单个 class 或 function,使用 export default

就像“在顶层上导出”帮助减少用户使用的难度,一个默认的导出也能起到这个效果。 如果一个模块就是为了导出特定的内容,那么你应该考虑使用一个默认导出。 这会令模块的导入和使用变得些许简单。 比如:

MyClass.ts

export default class SomeType {

  constructor() { ... }

}

MyFunc.ts

export default function getThing() { return 'thing'; }

Consumer.ts

import t from "./MyClass";

import f from "./MyFunc";

let x = new t();

console.log(f());

对用户来说这是最理想的。他们可以随意命名导入模块的类型(本例为t)并且不需要多余的(.)来找到相关对象。

如果要导出多个对象,把它们放在顶层里导出

MyThings.ts

export class SomeType { /* ... */ }

export function someFunc() { /* ... */ }

相反地,当导入的时候:

明确地列出导入的名字

Consumer.ts

import { SomeType, someFunc } from "./MyThings";

let x = new SomeType();

let y = someFunc();

使用命名空间导入模式当你要导出大量内容的时候

MyLargeModule.ts

export class Dog { ... }

export class Cat { ... }

export class Tree { ... }

export class Flower { ... }

Consumer.ts

import * as myLargeModule from "./MyLargeModule.ts";

let x = new myLargeModule.Dog();

使用重新导出进行扩展

你可能经常需要去扩展一个模块的功能。 JS里常用的一个模式是JQuery那样去扩展原对象。 如我们之前提到的,模块不会像全局命名空间对象那样去 合并。 推荐的方案是 不要去改变原来的对象,而是导出一个新的实体来提供新的功能。

假设Calculator.ts模块里定义了一个简单的计算器实现。 这个模块同样提供了一个辅助函数来测试计算器的功能,通过传入一系列输入的字符串并在最后给出结果。

Calculator.ts

export class Calculator {

    private current = 0;

    private memory = 0;

    private operator: string;

    protected processDigit(digit: string, currentValue: number) {

        if (digit >= "0" && digit <= "9") {

            return currentValue * 10 + (digit.charCodeAt(0) - "0".charCodeAt(0));

        }

    }

    protected processOperator(operator: string) {

        if (["+", "-", "*", "/"].indexOf(operator) >= 0) {

            return operator;

        }

    }

    protected evaluateOperator(operator: string, left: number, right: number): number {

        switch (this.operator) {

            case "+": return left + right;

            case "-": return left - right;

            case "*": return left * right;

            case "/": return left / right;

        }

    }

    private evaluate() {

        if (this.operator) {

            this.memory = this.evaluateOperator(this.operator, this.memory, this.current);

        }

        else {

            this.memory = this.current;

        }

        this.current = 0;

    }

    public handleChar(char: string) {

        if (char === "=") {

            this.evaluate();

            return;

        }

        else {

            let value = this.processDigit(char, this.current);

            if (value !== undefined) {

                this.current = value;

                return;

            }

            else {

                let value = this.processOperator(char);

                if (value !== undefined) {

                    this.evaluate();

                    this.operator = value;

                    return;

                }

            }

        }

        throw new Error(`Unsupported input: '${char}'`);

    }

    public getResult() {

        return this.memory;

    }

}

export function test(c: Calculator, input: string) {

    for (let i = 0; i < input.length; i++) {

        c.handleChar(input[i]);

    }

    console.log(`result of '${input}' is '${c.getResult()}'`);

}

下面使用导出的test函数来测试计算器。

TestCalculator.ts

import { Calculator, test } from "./Calculator";

let c = new Calculator();

test(c, "1+2*33/11="); // prints 9

现在扩展它,添加支持输入其它进制(十进制以外),让我们来创建ProgrammerCalculator.ts。

ProgrammerCalculator.ts

import { Calculator } from "./Calculator";

class ProgrammerCalculator extends Calculator {

    static digits = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"];

    constructor(public base: number) {

        super();

        const maxBase = ProgrammerCalculator.digits.length;

        if (base <= 0 || base > maxBase) {

            throw new Error(`base has to be within 0 to ${maxBase} inclusive.`);

        }

    }

    protected processDigit(digit: string, currentValue: number) {

        if (ProgrammerCalculator.digits.indexOf(digit) >= 0) {

            return currentValue * this.base + ProgrammerCalculator.digits.indexOf(digit);

        }

    }

}

// Export the new extended calculator as Calculator

export { ProgrammerCalculator as Calculator };

// Also, export the helper function

export { test } from "./Calculator";

新的ProgrammerCalculator模块导出的API与原先的Calculator模块很相似,但却没有改变原模块里的对象。 下面是测试ProgrammerCalculator类的代码:

TestProgrammerCalculator.ts

import { Calculator, test } from "./ProgrammerCalculator";

let c = new Calculator(2);

test(c, "001+010="); // prints 3

模块里不要使用命名空间

当初次进入基于模块的开发模式时,可能总会控制不住要将导出包裹在一个命名空间里。 模块具有其自己的作用域,并且只有导出的声明才会在模块外部可见。 记住这点,命名空间在使用模块时几乎没什么价值。

在组织方面,命名空间对于在全局作用域内对逻辑上相关的对象和类型进行分组是很便利的。 例如,在C#里,你会从 System.Collections里找到所有集合的类型。 通过将类型有层次地组织在命名空间里,可以方便用户找到与使用那些类型。 然而,模块本身已经存在于文件系统之中,这是必须的。 我们必须通过路径和文件名找到它们,这已经提供了一种逻辑上的组织形式。 我们可以创建 /collections/generic/文件夹,把相应模块放在这里面。

命名空间对解决全局作用域里命名冲突来说是很重要的。 比如,你可以有一个 My.Application.Customer.AddForm和My.Application.Order.AddForm -- 两个类型的名字相同,但命名空间不同。 然而,这对于模块来说却不是一个问题。 在一个模块里,没有理由两个对象拥有同一个名字。 从模块的使用角度来说,使用者会挑出他们用来引用模块的名字,所以也没有理由发生重名的情况。

危险信号

以下均为模块结构上的危险信号。重新检查以确保你没有在对模块使用命名空间:

文件的顶层声明是export namespace Foo { ... } (删除Foo并把所有内容向上层移动一层)

文件只有一个export class或export function (考虑使用export default)

多个文件的顶层具有同样的export namespace Foo { (不要以为这些会合并到一个Foo中!)

相关文章

  • TypeScript——模块(3)

    创建模块结构指导 尽可能地在顶层导出 用户应该更容易地使用你模块导出的内容。 嵌套层次过多会变得难以处理,因此仔细...

  • TypeScript基础入门之模块解析(三)

    转发 ## TypeScript基础入门之模块解析(三) 继续上文[TypeScript基础入门之模块解析(二)]...

  • TypeScript模块

    一个ts文件相当于一个作用域,它里面的函数、变量、类和接口对其他文件不可见。除非使用export导出它们,而要调用...

  • Typescript学习概要

    大致印象 TypeScript 增加了静态类型、类、模块、接口和类型注解. TypeScript 可用于开发大型的...

  • TypeScript学习资源汇总

    TypeScript安利指南 ☑️ 为 Vue3 学点 TypeScript , 体验 TypeScript ☑️...

  • TypeScript基础入门之模块解析(二)

    转发 ## TypeScript基础入门之模块解析(二) 模块解析 Base URL 使用baseUrl是使用AM...

  • webpack搭建和使用

    webpack路线 webpack的意义 模块化的思想(模块打包器) scss、less、typescript的预...

  • TypeSctipt语法和类型基础

    TypeScript基础语法 TypeScript程序由以下部分组成: 模块 函数 变量 语句和表达式 注释 ts...

  • TypeScript基础入门之模块(二)

    转载 # TypeScript基础入门之模块(二) 生成模块代码 根据编译期间指定的模块目标,编译器将为Node....

  • typescript 模块引用错误

    typescript 模块引用错误,配置 ts ,添加 esModuleInterop 与 allowSynthe...

网友评论

    本文标题:TypeScript——模块(3)

    本文链接:https://www.haomeiwen.com/subject/lfnfnctx.html