最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - can es6 class have public properties as well as functions? - Stack Overflow

programmeradmin2浏览0评论

All the examples of classes I see are

class myClass{
    constructor(){}
    someFunction(){}

what I want to add is

    someObject {myvalue:value}
}

this doesn't seem to pile. An old fashioned object would be

{
    somefunction: function(){}
    someProperty:  {myvalue:value}
} 

is this not possible in es6 classes?

All the examples of classes I see are

class myClass{
    constructor(){}
    someFunction(){}

what I want to add is

    someObject {myvalue:value}
}

this doesn't seem to pile. An old fashioned object would be

{
    somefunction: function(){}
    someProperty:  {myvalue:value}
} 

is this not possible in es6 classes?

Share Improve this question asked Jun 10, 2015 at 12:16 RaifRaif 9,28913 gold badges50 silver badges58 bronze badges 1
  • Why do you want the value to be stored on the prototype? – loganfsmyth Commented Jun 10, 2015 at 13:58
Add a ment  | 

2 Answers 2

Reset to default 8

You'd need to put it inside your constructor:

class myClass{
    constructor(){
        this.someObject = { myvalue:value };
    }
}
var obj = new myClass();
console.log(obj.someObject.myvalue); // value

If required, you can add the object onto the prototype chain the same as you would in ES5:

class myClass{
    constructor(){

    }
}
myClass.prototype.someObject = { myvalue:value };
var obj = new myClass();
console.log(obj.someObject.myvalue); // value

Note that there is no such thing as real private properties on a class. Any variable you attach to a class is public.

There is a Stage 0 proposal for Class Properties in ES7. If using Babel, this can be enabled using Experimental mode, allowing the following:

class MyClass {
  myProp = {value: "one"};
  constructor() {
    console.log(this.myProp);
  }
}

There is an easy way to simulate properties: getters.

var obj = {myvalue:value};

class Foo {
    get someProperty() {
       return obj;
    }
}

Whether it makes sense to use it entirely depends on the use case.

发布评论

评论列表(0)

  1. 暂无评论