>  기사  >  웹 프론트엔드  >  기본적으로 지원되지 않는 ES6 클래스의 클래스 변수를 어떻게 관리합니까?

기본적으로 지원되지 않는 ES6 클래스의 클래스 변수를 어떻게 관리합니까?

Barbara Streisand
Barbara Streisand원래의
2024-11-15 12:46:02481검색

How do you manage class variables in ES6 classes when they are not natively supported?

Class Variable Alternatives in ES6

In ES5, developers often used a comfortable pattern to create classes and class variables, as demonstrated in the following code:

// ES 5
FrameWork.Class({

    variable: 'string',
    variable2: true,

    init: function(){

    },

    addItem: function(){

    }

});

However, in ES6, creating classes natively doesn't include the option to have class variables, as shown below:

// ES6
class MyClass {
    const MY_CONST = 'string'; // <-- this is not possible in ES6
    constructor(){
        this.MY_CONST;
    }
}

This is because ES6 classes are restricted to containing methods. While it's possible to set this.myVar in the constructor, it's undesirable to clutter the constructor, especially with large classes.

Several approaches have been considered to address this issue, including:

  • Creating a ClassConfig handler: Pass a parameter object to the handler, which is declared separately from the class. The handler would then attach to the class. WeakMaps could potentially be integrated for this purpose.
  • A stage 3 proposal: This proposal allows declaring variables within a class declaration/expression body using the syntax varName = value. It's expected to become obsolete in the future.
  • Setting constructor variables: While not a perfect solution, constructor(){ this.foo = bar } can be used to set instance variables.
  • ES7 property initializers: A new proposal for ES7 allows declaring more concise instance variables using class declarations and expressions.

위 내용은 기본적으로 지원되지 않는 ES6 클래스의 클래스 변수를 어떻게 관리합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.