类的修饰
基本上,修饰器的行为就是下面这样。修饰器是一个对类进行处理的函数。修饰器函数的第一个参数,就是所要修饰的目标类。
@decorator
class A {}
// 等同于
class A {}
A = decorator(A) || A;
2
3
4
5
6
如果觉得一个参数不够用,可以在修饰器外面再封装一层函数。
function testable(isTestable) {
return function(target) {
target.isTestable = isTestable;
};
}
@testable(true)
class MyTestableClass {}
MyTestableClass.isTestable; // true
@testable(false)
class MyClass {}
MyClass.isTestable; // false
2
3
4
5
6
7
8
9
10
11
12
13
注意,修饰器对类的行为的改变,是代码编译时发生的,而不是在运行时。这意味着,修饰器能在编译阶段运行代码。也就是说,修饰器本质就是编译时执行的函数。
前面的例子是为类添加一个静态属性,如果想添加实例属性,可以通过目标类的 prototype 对象操作。
function testable(target) {
target.prototype.isTestable = true;
}
@testable
class MyTestableClass {}
let obj = new MyTestableClass();
obj.isTestable; // true
2
3
4
5
6
7
8
9
下面代码通过修饰器 mixins,把 Foo 对象的方法添加到了 MyClass 的实例上面。可以用 Object.assign()模拟这个功能。
// mixins.js
export function mixins(...list) {
return function(target) {
Object.assign(target.prototype, ...list);
};
}
// main.js
import { mixins } from './mixins';
const Foo = {
foo() {
console.log('foo');
}
};
@mixins(Foo)
class MyClass {}
let obj = new MyClass();
obj.foo(); // 'foo'
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
实际开发中,React 与 Redux 库结合使用时,常常需要写成下面这样。
class MyReactComponent extends React.Component {}
export default connect(
mapStateToProps,
mapDispatchToProps
)(MyReactComponent);
2
3
4
5
6
有了装饰器,就可以改写上面的代码。
@connect(
mapStateToProps,
mapDispatchToProps
)
export default class MyReactComponent extends React.Component {}
2
3
4
5
方法的修饰
修饰器不仅可以修饰类,还可以修饰类的属性。
下面代码中,修饰器 readonly 用来修饰“类”的 name 方法。
class Person {
@readonly
name() {
return `${this.first} ${this.last}`;
}
}
2
3
4
5
6
修饰器函数 readonly 一共可以接受三个参数。
function readonly(target, name, descriptor) {
// descriptor对象原来的值如下
// {
// value: specifiedFunction,
// enumerable: false,
// configurable: true,
// writable: true
// };
descriptor.writable = false;
return descriptor;
}
readonly(Person.prototype, 'name', descriptor);
// 类似于
Object.defineProperty(Person.prototype, 'name', descriptor);
2
3
4
5
6
7
8
9
10
11
12
13
14
15
修饰器第一个参数是类的原型对象,上例是 Person.prototype,修饰器的本意是要“修饰”类的实例,但是这个时候实例还没生成,所以只能去修饰原型(这不同于类的修饰,那种情况时 target 参数指的是类本身);第二个参数是所要修饰的属性名,第三个参数是该属性的描述对象。
修饰器(readonly)会修改属性的描述对象(descriptor),然后被修改的描述对象再用来定义属性。
下面是另一个例子,修改属性描述对象的 enumerable 属性,使得该属性不可遍历。
class Person {
@nonenumerable
get kidCount() {
return this.children.length;
}
}
function nonenumerable(target, name, descriptor) {
descriptor.enumerable = false;
return descriptor;
}
2
3
4
5
6
7
8
9
10
11
@log 修饰器的作用就是在执行原始的操作之前,执行一次 console.log,从而达到输出日志的目的。
class Math {
@log
add(a, b) {
return a + b;
}
}
function log(target, name, descriptor) {
var oldValue = descriptor.value;
descriptor.value = function() {
console.log(`Calling ${name} with`, arguments);
return oldValue.apply(this, arguments);
};
return descriptor;
}
const math = new Math();
// passed parameters should get logged now
math.add(2, 4);
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
修饰器有注释的作用。
@testable
class Person {
@readonly
@nonenumerable
name() {
return `${this.first} ${this.last}`;
}
}
2
3
4
5
6
7
8
如果同一个方法有多个修饰器,会像剥洋葱一样,先从外到内进入,然后由内向外执行。
function dec(id) {
console.log('evaluated', id);
return (target, property, descriptor) => console.log('executed', id);
}
class Example {
@dec(1)
@dec(2)
method() {}
}
// evaluated 1
// evaluated 2
// executed 2
// executed 1
2
3
4
5
6
7
8
9
10
11
12
13
14
上面代码中,外层修饰器@dec(1)先进入,但是内层修饰器@dec(2)先执行。
除了注释,修饰器还能用来类型检查。所以,对于类来说,这项功能相当有用。从长期来看,它将是 JavaScript 代码静态分析的重要工具。
为什么修饰器不能用于函数?
修饰器只能用于类和类的方法,不能用于函数,因为存在函数提升。
var counter = 0;
var add = function () {
counter++;
};
@add
function foo() {
}
2
3
4
5
6
7
上面的代码,意图是执行后 counter 等于 1,但是实际上结果是 counter 等于 0。因为函数提升,使得实际执行的代码是下面这样。
@add
function foo() {
}
var counter;
var add;
counter = 0;
add = function () {
counter++;
};
2
3
4
5
6
7
8
9
下面是另一个例子。
var readOnly = require("some-decorator");
@readOnly
function foo() {
}
2
3
4
上面代码也有问题,因为实际执行是下面这样。
var readOnly;
@readOnly
function foo() {
}
readOnly = require("some-decorator");
2
3
4
5
总之,由于存在函数提升,使得修饰器不能用于 函数。类是不会提升的,所以就没有这方面的问题。
如果一定要修饰函数,可以采用高阶函数的形式直接执行。
function doSomething(name) {
console.log('Hello, ' + name);
}
function loggingDecorator(wrapped) {
return function() {
console.log('Starting');
const result = wrapped.apply(this, arguments);
console.log('Finished');
return result;
};
}
const wrapped = loggingDecorator(doSomething);
2
3
4
5
6
7
8
9
10
11
12
13
14
core-decorators.js
core-decorators.js 是一个第三方模块,提供了几个常见的修饰器,通过它可以更好地理解修饰器。
@autobind
autobind 修饰器使得方法中的 this 对象,绑定原始对象。
import { autobind } from 'core-decorators';
class Person {
@autobind
getPerson() {
return this;
}
}
let person = new Person();
let getPerson = person.getPerson;
getPerson() === person;
// true
2
3
4
5
6
7
8
9
10
11
@readonly
readonly 修饰器使得属性或方法不可写。
import { readonly } from 'core-decorators';
class Meal {
@readonly
entree = 'steak';
}
var dinner = new Meal();
dinner.entree = 'salmon';
// Cannot assign to read only property 'entree' of [object Object]
2
3
4
5
6
7
8
@override
override 修饰器检查子类的方法,是否正确覆盖了父类的同名方法,如果不正确会报错。
import { override } from 'core-decorators';
class Parent {
speak(first, second) {}
}
class Child extends Parent {
@override
speak() {}
// SyntaxError: Child#speak() does not properly override Parent#speak(first, second)
}
// or
class Child extends Parent {
@override
speaks() {}
// SyntaxError: No descriptor matching Child#speaks() was found on the prototype chain.
//
// Did you mean "speak"?
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@deprecate (别名@deprecated)
deprecate 或 deprecated 修饰器在控制台显示一条警告,表示该方法将废除。
import { deprecate } from 'core-decorators';
class Person {
@deprecate
facepalm() {}
@deprecate('We stopped facepalming')
facepalmHard() {}
@deprecate('We stopped facepalming', {
url: 'http://knowyourmeme.com/memes/facepalm'
})
facepalmHarder() {}
}
let person = new Person();
person.facepalm();
// DEPRECATION Person#facepalm: This function will be removed in future versions.
person.facepalmHard();
// DEPRECATION Person#facepalmHard: We stopped facepalming
person.facepalmHarder();
// DEPRECATION Person#facepalmHarder: We stopped facepalming
//
// See http://knowyourmeme.com/memes/facepalm for more details.
//
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@suppressWarnings
suppressWarnings 修饰器抑制 deprecated 修饰器导致的 console.warn()调用。但是,异步代码发出的调用除外。
import { suppressWarnings } from 'core-decorators';
class Person {
@deprecated
facepalm() {}
@suppressWarnings
facepalmWithoutWarning() {
this.facepalm();
}
}
let person = new Person();
person.facepalmWithoutWarning();
// no warning is logged
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
使用修饰器实现自动发布事件
我们可以使用修饰器,使得对象的方法被调用时,自动发出一个事件。
const postal = require('postal/lib/postal.lodash');
export default function publish(topic, channel) {
const channelName = channel || '/';
const msgChannel = postal.channel(channelName);
msgChannel.subscribe(topic, v => {
console.log('频道: ', channelName);
console.log('事件: ', topic);
console.log('数据: ', v);
});
return function(target, name, descriptor) {
const fn = descriptor.value;
descriptor.value = function() {
let value = fn.apply(this, arguments);
msgChannel.publish(topic, value);
};
};
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
上面代码定义了一个名为 publish 的修饰器,它通过改写 descriptor.value,使得原方法被调用时,会自动发出一个事件。它使用的事件“发布/订阅”库是 Postal.js。
// index.js
import publish from './publish';
class FooComponent {
@publish('foo.some.message', 'component')
someMethod() {
return { my: 'data' };
}
@publish('foo.some.other')
anotherMethod() {
// ...
}
}
let foo = new FooComponent();
foo.someMethod();
foo.anotherMethod();
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Mixin
下面,我们部署一个通用脚本 mixins.js,将 Mixin 写成一个修饰器。
export function mixins(...list) {
return function(target) {
Object.assign(target.prototype, ...list);
};
}
2
3
4
5
然后,就可以使用上面这个修饰器,为类“混入”各种方法。
import { mixins } from './mixins';
const Foo = {
foo() {
console.log('foo');
}
};
@mixins(Foo)
class MyClass {}
let obj = new MyClass();
obj.foo(); // "foo"
2
3
4
5
6
7
8
9
10
11
12
13
不过,上面的方法会改写 MyClass 类的 prototype 对象,如果不喜欢这一点,也可以通过类的继承实现 Mixin。
let MyMixin = superclass =>
class extends superclass {
foo() {
console.log('foo from MyMixin');
}
};
2
3
4
5
6
接着,目标类再去继承这个混入类,就达到了“混入”foo 方法的目的。
class MyClass extends MyMixin(MyBaseClass) {
/* ... */
}
let c = new MyClass();
c.foo(); // "foo from MyMixin"
2
3
4
5
6
如果需要“混入”多个方法,就生成多个混入类。
class MyClass extends Mixin1(Mixin2(MyBaseClass)) {
/* ... */
}
2
3
这种写法的一个好处,是可以调用 super,因此可以避免在“混入”过程中覆盖父类的同名方法。
let Mixin1 = (superclass) => class extends superclass {
foo() {
console.log('foo from Mixin1');
if (super.foo) super.foo();
}
};
let Mixin2 = (superclass) => class extends superclass {
foo() {
console.log('foo from Mixin2');
if (super.foo) super.foo();
}
};
class S {
foo() {
console.log('foo from S');
}
}
class C extends Mixin1(Mixin2(S)) {
foo() {
console.log('foo from C');
super.foo();
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
上面代码中,每一次混入发生时,都调用了父类的 super.foo 方法,导致父类的同名方法没有被覆盖,行为被保留了下来。
new C().foo();
// foo from C
// foo from Mixin1
// foo from Mixin2
// foo from S
2
3
4
5
Trait
Trait 也是一种修饰器,效果与 Mixin 类似,但是提供更多功能,比如防止同名方法的冲突、排除混入某些方法、为混入的方法起别名等等。
下面采用 traits-decorator 这个第三方模块作为例子。这个模块提供的 traits 修饰器,不仅可以接受对象,还可以接受 ES6 类作为参数。
import { traits } from 'traits-decorator';
class TFoo {
foo() {
console.log('foo');
}
}
const TBar = {
bar() {
console.log('bar');
}
};
@traits(TFoo, TBar)
class MyClass {}
let obj = new MyClass();
obj.foo(); // foo
obj.bar(); // bar
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Trait 不允许“混入”同名方法。
import { traits } from 'traits-decorator';
class TFoo {
foo() {
console.log('foo');
}
}
const TBar = {
bar() {
console.log('bar');
},
foo() {
console.log('foo');
}
};
@traits(TFoo, TBar)
class MyClass {}
// 报错
// throw new Error('Method named: ' + methodName + ' is defined twice.');
// ^
// Error: Method named: foo is defined twice.
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
一种解决方法是排除 TBar 的 foo 方法。
import { traits, excludes } from 'traits-decorator';
class TFoo {
foo() {
console.log('foo');
}
}
const TBar = {
bar() {
console.log('bar');
},
foo() {
console.log('foo');
}
};
@traits(TFoo, TBar::excludes('foo'))
class MyClass {}
let obj = new MyClass();
obj.foo(); // foo
obj.bar(); // bar
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
另一种方法是为 TBar 的 foo 方法起一个别名。
import { traits, alias } from 'traits-decorator';
class TFoo {
foo() {
console.log('foo');
}
}
const TBar = {
bar() {
console.log('bar');
},
foo() {
console.log('foo');
}
};
@traits(TFoo, TBar::alias({ foo: 'aliasFoo' }))
class MyClass {}
let obj = new MyClass();
obj.foo(); // foo
obj.aliasFoo(); // foo
obj.bar(); // bar
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
alias 和 excludes 方法,可以结合起来使用。
@traits(TExample::excludes('foo', 'bar')::alias({ baz: 'exampleBaz' }))
class MyClass {}
2
as 方法则为上面的代码提供了另一种写法。
@traits(
TExample::as({ excludes: ['foo', 'bar'], alias: { baz: 'exampleBaz' } })
)
class MyClass {}
2
3
4