装饰器初探

Posted zt123123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了装饰器初探相关的知识,希望对你有一定的参考价值。

typescript新增了装饰器语法,不过一直处于试验阶段,需要配置tsconfig.json才能支持

添加如下代码

{
    "compilerOptions": {
        "experimentalDecorators": true
    }
}

利用装饰器,可以实现面向切面编程(AOP),例如常见的日志,打点上报,resful接口注解等。在不侵入业务代码的情况下,增强代码,算是一种元编程吧

如下代码,可在代码中注入日志,记录函数执行过程中的一些log

function classDecorator<T extends { new(...args: any[]): {} }>(constructor: T) {
  return class extends constructor {
    newProperty = "new property";
    hello = "override";
  }
}

function post(method: string, params: Record<string, any>) {
  return (target: any, key: any) => {
    const oldFn = target[key];
    target[key] = (...args: any[]) => {
      console.log(‘---before call---‘);
      oldFn.apply(target, args.concat(method, params))
      console.log(‘---after call---‘);
    }
  }
}

@classDecorator
class Greeter {
  property = "property";
  hello: string;
  constructor(m: string) {
    this.hello = m;
  }

  @post(‘/add‘, { name: ‘tian‘, age: 23 })
  say(...arg: any[]) {
    console.log(...arg);
  }
}

const greeter = new Greeter("world");
greeter.say(1111);
console.log(greeter);

 

技术图片

 

 

 结果如下

技术图片

 

以上是关于装饰器初探的主要内容,如果未能解决你的问题,请参考以下文章

Python 装饰器初探

Python初探第二篇-装饰器和迭代器,生成器

装饰器设计模式初探(Java实现)

python使用上下文对代码片段进行计时,非装饰器

初探装饰器模式

Python装饰器的前世今生!