TypeScript 1.7

支持 async/await 编译到 ES6 (Node v4+)

TypeScript 目前在已经原生支持 ES6 generator 的引擎 (比如 Node v4 及以上版本) 上支持异步函数. 异步函数前置 async 关键字; await 会暂停执行, 直到一个异步函数执行后返回的 promise 被 fulfill 后获得它的值.

例子

在下面的例子中, 输入的内容将会延时 400 毫秒逐个打印:

  1. "use strict";
  2. // printDelayed 返回值是一个 'Promise<void>'
  3. async function printDelayed(elements: string[]) {
  4. for (const element of elements) {
  5. await delay(400);
  6. console.log(element);
  7. }
  8. }
  9. async function delay(milliseconds: number) {
  10. return new Promise<void>(resolve => {
  11. setTimeout(resolve, milliseconds);
  12. });
  13. }
  14. printDelayed(["Hello", "beautiful", "asynchronous", "world"]).then(() => {
  15. console.log();
  16. console.log("打印每一个内容!");
  17. });

查看 Async Functions 一文了解更多.

支持同时使用 --target ES6--module

TypeScript 1.7 将 ES6 添加到了 --module 选项支持的选项的列表, 当编译到 ES6 时允许指定模块类型. 这让使用具体运行时中你需要的特性更加灵活.

例子

  1. {
  2. "compilerOptions": {
  3. "module": "amd",
  4. "target": "es6"
  5. }
  6. }

this 类型

在方法中返回当前对象 (也就是 this) 是一种创建链式 API 的常见方式. 比如, 考虑下面的 BasicCalculator 模块:

  1. export default class BasicCalculator {
  2. public constructor(protected value: number = 0) { }
  3. public currentValue(): number {
  4. return this.value;
  5. }
  6. public add(operand: number) {
  7. this.value += operand;
  8. return this;
  9. }
  10. public subtract(operand: number) {
  11. this.value -= operand;
  12. return this;
  13. }
  14. public multiply(operand: number) {
  15. this.value *= operand;
  16. return this;
  17. }
  18. public divide(operand: number) {
  19. this.value /= operand;
  20. return this;
  21. }
  22. }

使用者可以这样表述 2 * 5 + 1:

  1. import calc from "./BasicCalculator";
  2. let v = new calc(2)
  3. .multiply(5)
  4. .add(1)
  5. .currentValue();

这使得这么一种优雅的编码方式成为可能; 然而, 对于想要去继承 BasicCalculator 的类来说有一个问题. 想象使用者可能需要编写一个 ScientificCalculator:

  1. import BasicCalculator from "./BasicCalculator";
  2. export default class ScientificCalculator extends BasicCalculator {
  3. public constructor(value = 0) {
  4. super(value);
  5. }
  6. public square() {
  7. this.value = this.value ** 2;
  8. return this;
  9. }
  10. public sin() {
  11. this.value = Math.sin(this.value);
  12. return this;
  13. }
  14. }

因为 BasicCalculator 的方法返回了 this, TypeScript 过去推断的类型是 BasicCalculator, 如果在 ScientificCalculator 的实例上调用属于 BasicCalculator 的方法, 类型系统不能很好地处理.

举例来说:

  1. import calc from "./ScientificCalculator";
  2. let v = new calc(0.5)
  3. .square()
  4. .divide(2)
  5. .sin() // Error: 'BasicCalculator' 没有 'sin' 方法.
  6. .currentValue();

这已经不再是问题 - TypeScript 现在在类的实例方法中, 会将 this 推断为一个特殊的叫做 this 的类型. this 类型也就写作 this, 可以大致理解为 “方法调用时点左边的类型”.

this 类型在描述一些使用了 mixin 风格继承的库 (比如 Ember.js) 的交叉类型:

  1. interface MyType {
  2. extend<T>(other: T): this & T;
  3. }

ES7 幂运算符

TypeScript 1.7 支持将在 ES7/ES2016 中增加的幂运算符: ****=. 这些运算符会被转换为 ES3/ES5 中的 Math.pow.

举例

  1. var x = 2 ** 3;
  2. var y = 10;
  3. y **= 2;
  4. var z = -(4 ** 3);

会生成下面的 JavaScript:

  1. var x = Math.pow(2, 3);
  2. var y = 10;
  3. y = Math.pow(y, 2);
  4. var z = -(Math.pow(4, 3));

改进对象字面量解构的检查

TypeScript 1.7 使对象和数组字面量解构初始值的检查更加直观和自然.

当一个对象字面量通过与之对应的对象解构绑定推断类型时:

  • 对象解构绑定中有默认值的属性对于对象字面量来说可选.
  • 对象解构绑定中的属性如果在对象字面量中没有匹配的值, 则该属性必须有默认值, 并且会被添加到对象字面量的类型中.
  • 对象字面量中的属性必须在对象解构绑定中存在.

当一个数组字面量通过与之对应的数组解构绑定推断类型时:

  • 数组解构绑定中的元素如果在数组字面量中没有匹配的值, 则该元素必须有默认值, 并且会被添加到数组字面量的类型中.

举例

  1. // f1 的类型为 (arg?: { x?: number, y?: number }) => void
  2. function f1({ x = 0, y = 0 } = {}) { }
  3. // And can be called as:
  4. f1();
  5. f1({});
  6. f1({ x: 1 });
  7. f1({ y: 1 });
  8. f1({ x: 1, y: 1 });
  9. // f2 的类型为 (arg?: (x: number, y?: number) => void
  10. function f2({ x, y = 0 } = { x: 0 }) { }
  11. f2();
  12. f2({}); // 错误, x 非可选
  13. f2({ x: 1 });
  14. f2({ y: 1 }); // 错误, x 非可选
  15. f2({ x: 1, y: 1 });

装饰器 (decorators) 支持的编译目标版本增加 ES3

装饰器现在可以编译到 ES3. TypeScript 1.7 在 __decorate 函数中移除了 ES5 中增加的 reduceRight. 相关改动也内联了对 Object.getOwnPropertyDescriptorObject.defineProperty 的调用, 并向后兼容, 使 ES5 的输出可以消除前面提到的 Object 方法的重复[1].