//装饰器本质是一个函数
//装饰对象可以使用多个装饰器
//装饰器可以带参数
//装饰器修饰类,实例方法
//aop 设计思想(log,邮件发送)
function school(target){
target.schoolName="快手直播";
}
function hometown(diqu){
return function(target){
target.home=diqu;
}
}
function studyke(kemu){
return function(target){
target.ke=kemu;
}
}
@hometown("根里的")
@school
class Student {
constructor(name){
this.name=name;
}
@studyke("jquery")
study(){
console.log(this.name+"在看"+this.ke);
}
}
console.log(Student.schoolName);//显示快手直播.
console.log(Student.home);//显示根里的.
let l = new Student("曹伟");
l.study();//显示曹伟再看jquery.
@school
class Teacher {
}
console.log(Teacher.schoolName);//显示快手直播.
相关文章
- 03-14python – 使用两个不同的decorator实现来装饰所有类方法的Metaclass
- 03-14electron-vue [Vue warn]: Failed to resolve directive: decorator
- 03-14python进阶一(函数式编程)【2-8 python中decorator装饰器】
- 03-14babel编译decorator
- 03-14python – decorator,用于在命名空间中生成新类
- 03-14python @decorator与装饰器设计模式有关吗?
- 03-14带有参数的Python Decorator只调用一次
- 03-14vue-property-decorator用法
- 03-14day4装饰器 decorator
- 03-14设计模式4-装饰器模式Decorator