Javascript-如何从Object构造函数中的字典中检索键

时间:2018-10-22 12:29:50

标签: javascript dictionary constructor key-value

当前,我正在初始化一个对象,并从字典中检索出其值之一,其形式类似于这样

var TrailColor = {
    red: '#FF0000',
    orange: '#FF9900',
    yellow: '#FFFF00' 
};

function Trail(trailName, trailColor) {
    this.trailName = trailName;
    this.trailColor = trailColor;
}

var trail1 = new Trail("TrailName", TrailColor.red);

现在,我决定不仅要使用颜色代码,还要使用颜色名称作为该对象的一部分。但是,我不确定如何“反过来”检索颜色名称-因此我根据值获得一个确切的键(不是整个数组,我知道如何获得它),并将其作为对象的属性。是否有一些简单的方法可以做到,而无需遍历整个数组?谢谢。

1 个答案:

答案 0 :(得分:1)

我首先传递颜色名称而不是值:

function Trail(name, color = 'red') {
  this.name = name;
  this.colorName = color;
  this.color = this._colors[color];
}

Object.assign(Trail.prototype, {
  _colors: {
    red: '#FF0000',
    orange: '#FF9900',
    yellow: '#FFFF00'
  },
  getColorName() {
    return this.colorName;
  }
});

const trail = new Trail("TrailName", "red");
trail.colorName // => "red"
trail.getColorName() // => "red"     
trail.color // => "#FF0000"