修饰器其实就是一个普通的函数,用来修饰类以及类的方法。
好比:html
@test class DecoratorTest { } function test(target) { target.testable = true; }
target 参数就是它修饰的类
这就表示给DecoratorTest这个类加上了一个静态属性 testable,等价于:vue
class DecoratorTest { public static testable = true; }
若是你以为一个参数不够用, 能够在外面再套一层函数用来传递参数
就像这样 :git
@testParam(true) class DecoratorTest { } function testParam(boolean bool) { return function test(target) { target.testable = bool; } }
这样就更灵活些了。
刚才咱们是用修饰器给类加了一个静态属性, 同理加实例属性只须要在类的原型上给它加个属性就好了es6
@testParam(true) class DecoratorTest { } function testParam(boolean bool) { return function test(target) { target.prototype.testable = bool; } }
::: warning
修饰器对类行为的改变发生在代码编译阶段,而不是运行阶段
:::github
修饰器不只能够修饰类, 还能够修饰类中的属性和方法
修饰什么就放在什么前面,web
修饰类中属性和方法时,修饰器函数接受三个参数ide
function readonly(target, name, descriptor) { descriptor.writable = false; return descriptor; }
target 是目标对象, name是修饰的属性名, descriptor是该属性的描述对象
descriptor 通常长这样函数
{ value : specifiedFunction, enumerable: false, configurable: true, writable: true }
它定义了该属性是否可枚举, 是否可读,是否可配置
上面的readonly修饰器修饰的属性不可写
相似于this
Object.defineProperty(target, name, { value : specifiedFunction, enumerable: false, configurable: true, writable: false })
修饰器在js中不能用来修饰函数, 由于js中函数在预编译阶段存在函数提高prototype
core-decorators.js
此模块封装了几个经常使用的修饰器