对象

时间:2016-11-15 09:01:42

标签: javascript object ecmascript-6

与str:

中建议的

编辑一样

我想在面板中创建一个对象,该对象应该包含一个(或两个)函数。这个对象将被移交给一个组件(我正在使用angularjs进行编程,所以我将通过绑定将其交给)所以我可以在" clientcomponent"上配置我的面板。打开那个面板......

如果我尝试这样做,IntelliJ会给出错误警告,即','预计

我试图在js对象中加入一个箭头函数..但是intellij并不喜欢我的方法。

我正在寻找这样的事情:

this.api = {
        showContent=(this.config)=> {
          //do sth
    }

这可能吗?

1 个答案:

答案 0 :(得分:2)

JS对象结构:

this.api = {
    showContent: true
};

现在添加arrow function试试这个

this.api = {
    showContent: config => {
        return true;
    }
};

与旧式相似

this.api = {
    showContent: function (config) {
        return true;
    } 
}