Decorator ES6装饰器的使用

Decorator  装饰器,是es6新出的语法,只能用来装饰类和类的方法的。 下面是装饰器修饰类的基本语法,他接收一个参数target,target是这个类本身,

		@testable
		class Person {}基本yufa 
		function testable(target){
			target.isText = true;// 给类添加静态属性
			target.prototype.isText = true; // 给实例添加属性
			console.log("编译时我就执行了")
		}

装饰器装修类的方法:

		class Person {
			@log()
			hello(){
			}
		}
		function log(target,name,descriptor){
			console.log(descriptor)
			return function(){
				console.log(111)
			}
		}

该方法接收3个参数,类本身,修饰的属性的名字,修饰属性的一些原始属性

转载于:https://my.oschina.net/u/3971746/blog/3095234

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值