博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS 装饰器解析
阅读量:5244 次
发布时间:2019-06-14

本文共 2576 字,大约阅读时间需要 8 分钟。

1623c57777702ef7?w=640&h=280&f=jpeg&s=17561

随着 ES6 和 TypeScript 中类的引入,在某些场景需要在不改变原有类和类属性的基础上扩展些功能,这也是装饰器出现的原因。

装饰器简介

作为一种可以动态增删功能模块的模式(比如 ),装饰器同样具有很强的动态灵活性,只需在类或类属性之前加上 @方法名 就完成了相应的类或类方法功能的变化。

不过装饰器模式仍处于,使用它之前需要使用 babel 模块 transform-decorators-legacy 编译成 ES5 或 ES6。

在 TypeScript 的 中,定义了 4 种不同装饰器的接口,其中装饰类以及装饰类方法的接口定义如下所示:

declare type ClassDecorator = 
(target: TFunction) => TFunction | void;declare type MethodDecorator =
(target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor
) => TypedPropertyDescriptor
| void;

下面对这两种情况进行解析。

作用于类的装饰器

当装饰的对象是类时,我们操作的就是这个类本身

@logclass MyClass { }function log(target) { // 这个 target 在这里就是 MyClass 这个类   target.prototype.logger = () => `${target.name} 被调用`}const test = new MyClass()test.logger() // MyClass 被调用

由于装饰器是表达式,我们也可以在装饰器后面再添加提个参数:

@log('hi')class MyClass { }function log(text) {  return function(target) {    target.prototype.logger = () => `${text},${target.name} 被调用`  }}const test = new MyClass()test.logger() // hello,MyClass 被调用

在使用 redux 中,我们最常使用 react-redux 的写法如下:

@connect(mapStateToProps, mapDispatchToProps)export default class MyComponent extends React.Component {}

经过上述分析,我们知道了上述写法等价于下面这种写法:

class MyComponent extends React.Component {}export default connect(mapStateToProps, mapDispatchToProps)(MyComponent)

作用于类方法的装饰器

与装饰类不同,对类方法的装饰本质是操作其描述符。可以把此时的装饰器理解成是 Object.defineProperty(obj, prop, descriptor) 的语法糖,看如下代码:

class C {  @readonly(false)  method() { console.log('cat') }}function readonly(value) {  return function (target, key, descriptor) { // 此处 target 为 C.prototype; key 为 method;    // 原 descriptor 为:{ value: f, enumarable: false, writable: true, configurable: true }    descriptor.writable = value    return descriptor  }}const c = new C()c.method = () => console.log('dog')c.method() // cat

可以看到装饰器函数接收的三个参数与 Object.defineProperty 是完全一样的,具体实现可以看 babel 转化后的代码,主要实现如下所示:

var C = (function() {  class C {    method() { console.log('cat') }  }  var temp  temp = readonly(false)(C.prototype, 'method',    temp = Object.getOwnPropertyDescriptor(C.prototype, 'method')) || temp // 通过 Object.getOwnPropertyDescriptor 获取到描述符传入到装饰器函数中  if (temp) Object.defineProperty(C.prototype, 'method', temp)  return C})()

再将再来看看如果有多个装饰器作用于同一个方法上呢?

class C {  @readonly(false)  @log  method() { }}

经 babel 转化后的代码如下:

desc = [readonly(false), log]    .slice()    .reverse()    .reduce(function(desc, decorator) {      return decorator(target, property, desc) || desc;    }, desc);

可以清晰地看出,经过 reverse 倒序后,装饰器方法会至里向外执行。

相关链接

转载于:https://www.cnblogs.com/MuYunyun/p/8601047.html

你可能感兴趣的文章
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>