前言

在了解 Babel 是如何编译 class 前,我们先看看 ES6 的 class 和 ES5 的构造函数是如何对应的。毕竟,ES6 的 class 可以看作一个语法糖,它的绝大部分功能,ES5 都可以做到,新的 class 写法只是让对象原型的写法更加清晰、更像面向对象编程的语法而已。

constructor

ES6 中:

  1. class Person {
  2. constructor(name) {
  3. this.name = name;
  4. }
  5.  
  6. sayHello() {
  7. return 'hello, I am ' + this.name;
  8. }
  9. }
  10.  
  11. var kevin = new Person('Kevin');
  12. kevin.sayHello(); // hello, I am Kevin

对应到 ES5 中就是:

  1. function Person(name) {
  2. this.name = name;
  3. }
  4.  
  5. Person.prototype.sayHello = function () {
  6. return 'hello, I am ' + this.name;
  7. };
  8.  
  9. var kevin = new Person('Kevin');
  10. kevin.sayHello(); // hello, I am Kevin

我们可以看到 ES5 的构造函数 Person,对应 ES6 的 Person 类的 constructor 方法。

值得注意的是:类的内部所有定义的方法,都是不可枚举的(non-enumerable)

以上面的例子为例,在 ES6 中:

  1. Object.keys(Person.prototype); // []
  2. Object.getOwnPropertyNames(Person.prototype); // ["constructor", "sayHello"]

然而在 ES5 中:

  1. Object.keys(Person.prototype); // ['sayHello']
  2. Object.getOwnPropertyNames(Person.prototype); // ["constructor", "sayHello"]

实例属性

以前,我们定义实例属性,只能写在类的 constructor 方法里面。比如:

  1. class Person {
  2. constructor() {
  3. this.state = {
  4. count: 0
  5. };
  6. }
  7. }

然而现在有一个提案,对实例属性和静态属性都规定了新的写法,而且 Babel 已经支持。现在我们可以写成:

  1. class Person {
  2. state = {
  3. count: 0
  4. };
  5. }

对应到 ES5 都是:

  1. function Person() {
  2. this.state = {
  3. count: 0
  4. };
  5. }

静态方法

所有在类中定义的方法,都会被实例继承。如果在一个方法前,加上 static 关键字,就表示该方法不会被实例继承,而是直接通过类来调用,这就称为“静态方法”。

ES6 中:

  1. class Person {
  2. static sayHello() {
  3. return 'hello';
  4. }
  5. }
  6.  
  7. Person.sayHello() // 'hello'
  8.  
  9. var kevin = new Person();
  10. kevin.sayHello(); // TypeError: kevin.sayHello is not a function

对应 ES5:

  1. function Person() {}
  2.  
  3. Person.sayHello = function() {
  4. return 'hello';
  5. };
  6.  
  7. Person.sayHello(); // 'hello'
  8.  
  9. var kevin = new Person();
  10. kevin.sayHello(); // TypeError: kevin.sayHello is not a function

静态属性

静态属性指的是 Class 本身的属性,即 Class.propName,而不是定义在实例对象(this)上的属性。以前,我们添加静态属性只可以这样:

  1. class Person {}
  2.  
  3. Person.name = 'kevin';

因为上面提到的提案,现在可以写成:

  1. class Person {
  2. static name = 'kevin';
  3. }

对应到 ES5 都是:

  1. function Person() {};
  2.  
  3. Person.name = 'kevin';

new 调用

值得注意的是:类必须使用 new 调用,否则会报错。这是它跟普通构造函数的一个主要区别,后者不用 new 也可以执行。

  1. class Person {}
  2.  
  3. Person(); // TypeError: Class constructor Foo cannot be invoked without 'new'

getter 和 setter

与 ES5 一样,在“类”的内部可以使用 get 和 set 关键字,对某个属性设置存值函数和取值函数,拦截该属性的存取行为。

  1. class Person {
  2. get name() {
  3. return 'kevin';
  4. }
  5. set name(newName) {
  6. console.log('new name 为:' + newName)
  7. }
  8. }
  9.  
  10. let person = new Person();
  11.  
  12. person.name = 'daisy';
  13. // new name 为:daisy
  14.  
  15. console.log(person.name);
  16. // kevin

对应到 ES5 中:

  1. function Person(name) {}
  2.  
  3. Person.prototype = {
  4. get name() {
  5. return 'kevin';
  6. },
  7. set name(newName) {
  8. console.log('new name 为:' + newName)
  9. }
  10. }
  11.  
  12. let person = new Person();
  13.  
  14. person.name = 'daisy';
  15. // new name 为:daisy
  16.  
  17. console.log(person.name);
  18. // kevin

Babel 编译

至此,我们已经知道了有关“类”的方法中,ES6 与 ES5 是如何对应的,实际上 Babel 在编译时并不会直接就转成这种形式,Babel 会自己生成一些辅助函数,帮助实现 ES6 的特性。

我们可以在 Babel 官网的 Try it out 页面查看 ES6 的代码编译成什么样子。

编译(一)

ES6 代码为:

  1. class Person {
  2. constructor(name) {
  3. this.name = name;
  4. }
  5. }

Babel 编译为:

  1. "use strict";
  2.  
  3. function _classCallCheck(instance, Constructor) {
  4. if (!(instance instanceof Constructor)) {
  5. throw new TypeError("Cannot call a class as a function");
  6. }
  7. }
  8.  
  9. var Person = function Person(name) {
  10. _classCallCheck(this, Person);
  11.  
  12. this.name = name;
  13. };

_classCallCheck 的作用是检查 Person 是否是通过 new 的方式调用,在上面,我们也说过,类必须使用 new 调用,否则会报错。

当我们使用 var person = Person() 的形式调用的时候,this 指向 window,所以 instance instanceof Constructor 就会为 false,与 ES6 的要求一致。

编译(二)

ES6 代码为:

  1. class Person {
  2. // 实例属性
  3. foo = 'foo';
  4. // 静态属性
  5. static bar = 'bar';
  6.  
  7. constructor(name) {
  8. this.name = name;
  9. }
  10. }

Babel 编译为:

  1. 'use strict';
  2.  
  3. function _classCallCheck(instance, Constructor) {
  4. if (!(instance instanceof Constructor)) {
  5. throw new TypeError("Cannot call a class as a function");
  6. }
  7. }
  8.  
  9. var Person = function Person(name) {
  10. _classCallCheck(this, Person);
  11.  
  12. this.foo = 'foo';
  13.  
  14. this.name = name;
  15. };
  16.  
  17. Person.bar = 'bar';

编译(三)

ES6 代码为:

  1. class Person {
  2. constructor(name) {
  3. this.name = name;
  4. }
  5.  
  6. sayHello() {
  7. return 'hello, I am ' + this.name;
  8. }
  9.  
  10. static onlySayHello() {
  11. return 'hello'
  12. }
  13.  
  14. get name() {
  15. return 'kevin';
  16. }
  17.  
  18. set name(newName) {
  19. console.log('new name 为:' + newName)
  20. }
  21. }

对应到 ES5 的代码应该是:

  1. function Person(name) {
  2. this.name = name;
  3. }
  4.  
  5. Person.prototype = {
  6. sayHello: function () {
  7. return 'hello, I am ' + this.name;
  8. },
  9. get name() {
  10. return 'kevin';
  11. },
  12. set name(newName) {
  13. console.log('new name 为:' + newName)
  14. }
  15. }
  16.  
  17. Person.onlySayHello = function () {
  18. return 'hello'
  19. };

Babel 编译后为:

  1. 'use strict';
  2.  
  3. var _createClass = function() {
  4. function defineProperties(target, props) {
  5. for (var i = 0; i < props.length; i++) {
  6. var descriptor = props[i];
  7. descriptor.enumerable = descriptor.enumerable || false;
  8. descriptor.configurable = true;
  9. if ("value" in descriptor) descriptor.writable = true;
  10. Object.defineProperty(target, descriptor.key, descriptor);
  11. }
  12. }
  13. return function(Constructor, protoProps, staticProps) {
  14. if (protoProps) defineProperties(Constructor.prototype, protoProps);
  15. if (staticProps) defineProperties(Constructor, staticProps);
  16. return Constructor;
  17. };
  18. }();
  19.  
  20. function _classCallCheck(instance, Constructor) {
  21. if (!(instance instanceof Constructor)) {
  22. throw new TypeError("Cannot call a class as a function");
  23. }
  24. }
  25.  
  26. var Person = function() {
  27. function Person(name) {
  28. _classCallCheck(this, Person);
  29.  
  30. this.name = name;
  31. }
  32.  
  33. _createClass(Person, [{
  34. key: 'sayHello',
  35. value: function sayHello() {
  36. return 'hello, I am ' + this.name;
  37. }
  38. }, {
  39. key: 'name',
  40. get: function get() {
  41. return 'kevin';
  42. },
  43. set: function set(newName) {
  44. console.log('new name 为:' + newName);
  45. }
  46. }], [{
  47. key: 'onlySayHello',
  48. value: function onlySayHello() {
  49. return 'hello';
  50. }
  51. }]);
  52.  
  53. return Person;
  54. }();

我们可以看到 Babel 生成了一个 _createClass 辅助函数,该函数传入三个参数,第一个是构造函数,在这个例子中也就是 Person,第二个是要添加到原型上的函数数组,第三个是要添加到构造函数本身的函数数组,也就是所有添加 static 关键字的函数。该函数的作用就是将函数数组中的方法添加到构造函数或者构造函数的原型中,最后返回这个构造函数。

在其中,又生成了一个 defineProperties 辅助函数,使用 Object.defineProperty 方法添加属性。

默认 enumerable 为 false,configurable 为 true,这个在上面也有强调过,是为了防止 Object.keys() 之类的方法遍历到。然后通过判断 value 是否存在,来判断是否是 getter 和 setter。如果存在 value,就为 descriptor 添加 value 和 writable 属性,如果不存在,就直接使用 get 和 set 属性。

写在后面

至此,我们已经了解了 Babel 是如何编译一个 Class 的,然而,Class 还有一个重要的特性就是继承,Class 如何继承,Babel 又该如何编译,欢迎期待下一篇《 ES6 系列之 Babel 是如何编译 Class 的(下)》

ES6 系列

ES6 系列目录地址:https://github.com/mqyqingfeng/Blog

ES6 系列预计写二十篇左右,旨在加深 ES6 部分知识点的理解,重点讲解块级作用域、标签模板、箭头函数、Symbol、Set、Map 以及 Promise 的模拟实现、模块加载方案、异步处理等内容。

如果有错误或者不严谨的地方,请务必给予指正,十分感谢。如果喜欢或者有所启发,欢迎 star,对作者也是一种鼓励。