更新JS对象

时间:2010-11-29 12:57:36

标签: javascript oop

我想要的是以简单的方式替换实例属性,并在类本身内部进行。所以我可以利用构造函数,而不必为了更新而创建一个巨大的方法。

function Champ(champ ){
  var instance = this
  instance.id = champ.id
  // PERSONAL
  instance.name = champ.name
  instance.lore = champ.lore
  // ATTRIBUTES
  instance.attr1 = champ.attr1
  instance.attr2 = champ.attr2
  instance.fitness = champ.fitness
  // BARS
  instance.energy = champ.energy
  instance.stress = champ.stress

  function update( new_champ ){
    instance = new Champ( new_champ );
  }

  this.location = "1"

  this.update = update
}

// I will put in a simple way, how does it fail for me and how do I wanted it to behave

c = new Champ( {energy: 1, stress : 1} )
c.energy //=> 1 (OK)
c.update( { energy: 9, stress: 9} )
c.energy //=> 1 (FAIL, I wanted it to be 9)

我想我真的很天真,有没有一种好方法让它在课堂上进行这种上下文替换?

1 个答案:

答案 0 :(得分:5)

为什么不能这样:

function update(new_champ) {
    for(var prop in new_champ) {
        if(new_champ.hasOwnProperty(prop) && this.hasOwnProperty(prop)) {
            this[prop] = new_champ[prop];
        }
    }
}

这将循环传递给函数的对象的属性,并且仅当实例具有此类属性时才更新实例的相应属性。

顺便说一下。您应该考虑使用prototype来创建类方法。