码迷,mamicode.com
首页 > 其他好文 > 详细

es6之Decorator

时间:2018-06-07 14:29:30      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:des   readonly   bsp   col   函数   对象   color   tab   script   

修饰器

是一个函数,用来修改 类的行为

{
  let readonly=function(target,name,descriptor){
    descriptor.writable=false;
    return descriptor
  };

  class Test{
    @readonly
    time(){
      return ‘2017-03-11‘
    }
  }

  let test=new Test();

  // test.time=function(){
  //   console.log(‘reset time‘);
  // };    //报错

  console.log(test.time());
}

基本上,修饰器的行为就是下面这样。

@decorator
class A {}

// 等同于
class A {}
A = decorator(A) || A;

下面是另一个例子,修改属性描述对象的enumerable属性,使得该属性不可遍历。

class Person {
  @nonenumerable
  get kidCount() { return this.children.length; }
}

function nonenumerable(target, name, descriptor) {
  descriptor.enumerable = false;
  return descriptor;
}
 
{
  let typename=function(target,name,descriptor){
    target.myname=‘hello‘;
  }

  @typename
  class Test{

  }

  console.log(Test.myname);     //hello
}

 

core-decorators.js

core-decorators.js是一个第三方模块,提供了几个常见的修饰器,通过它可以更好地理解修饰器。

  第三方库修饰器的js库:core-decorators;通过js文件引入,

或者npm install core-decorators

 

es6之Decorator

标签:des   readonly   bsp   col   函数   对象   color   tab   script   

原文地址:https://www.cnblogs.com/sunmarvell/p/9149847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!