There are several types of decorators in es6

WBOY
Release: 2022-04-25 18:57:48
Original
1633 people have browsed it

There are two types of es6 decorators. Decorators can only be used for classes and class methods, so they can be divided into: 1. Class decorators, used to decorate the entire class, the syntax is "@ function name"; 2. Class method decorators, used to decorate methods of the class , the syntax is "@ function name method name".

There are several types of decorators in es6

The operating environment of this tutorial: Windows 10 system, ECMAScript version 6.0, Dell G3 computer.

There are several types of es6 decorators

There are two types of es6 decorators.

Decorator (Decorator) is a syntax related to a class (class), used to annotate or modify class-related methods and properties. Many object-oriented languages ​​have this feature. Generally related to classes, don't use ordinary methods.

Decorator is a function, written as @ function name. It can be placed before the definition of classes and class methods. The decorator is to execute the function and add some control conditions to the class or the attribute methods under the class.

Decorators can only be used for classes and class methods, and cannot be used for functions because of function promotion.

1. Class decorator

Class decorator is used to decorate the entire class

The example is as follows:

@decorateClass
class Example {
    //...
}
 
function decorateClass(target) {
    target.isTestClass = true
}
Copy after login

As in the above code , the decorator @decorateClass modifies the behavior of the entire Example class and adds a static attribute isTestClass to the Example class. A decorator is a function. The parameter target in the decorateClass function is the Example class itself, which is also equivalent to the class constructor Example.prototype.constructor.

2. Class method decorator

Class method decorators are used to decorate class methods

Examples are as follows:

class Example {
    @log
    instanceMethod() { }
 
    @log
    static staticMethod() { }
}
 
function log(target, methodName, descriptor) {
  const oldValue = descriptor.value;
 
  descriptor.value = function() {
    console.log(`Calling ${name} with`, arguments);
    return oldValue.apply(this, arguments);
  };
 
  return descriptor;
}
Copy after login

As in the above code, the decorator @log decorates the instance method instanceMethod and the static method staticMethod respectively. The function of the @log decorator is to execute console.log to output the log before performing the original operation.

【Related recommendations: javascript video tutorial, web front-end

The above is the detailed content of There are several types of decorators in es6. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
es6
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template