美文网首页
类里方法的参数的装饰器

类里方法的参数的装饰器

作者: 泡杯感冒灵 | 来源:发表于2022-04-17 12:10 被阅读0次
    参数的装饰器接收3个参数
    • target Test 原型
    • key 方法名
    • paramIndex 参数所在的位置
    function paramDecorator(target: any, method: string, paramIndex:number) {
      console.log(target, method, paramIndex);
    };
    
    
    class Test{
      getInfo(@paramDecorator name: string, age: number) {
        console.log(name, age);
      }
    }
    
    const test = new Test();
    test.getInfo('yang', 20);
    

    相关文章

      网友评论

          本文标题:类里方法的参数的装饰器

          本文链接:https://www.haomeiwen.com/subject/rxlqertx.html