我已经熟悉JavaScript和this关键字的原型世界。我是Web世界的新手。今天,当我开始使用原型时,我看到了一些奇怪的行为,但是我无法理解为什么会这样。我创建了一个构造函数Group,如下所示:

// Code goes here
function Group(config) {
  this.config = config;
  this.getId = function() {
    return this.config.id;
  };
  this.setId = function(id) {
    this.config.id = id;
  };
}


我在一个MyGroup构造函数中使用它,如下所示:

function MyGroup(config) {
  var myAttrs = ['id', 'name'];
  this.g = new Group(config);
  addGetterSetter(MyGroup, this.g, myAttrs)
}


addGetterSetter是我编写的将getter和setter动态添加到MyGroup属性的函数。

var GET = 'get',
  SET = 'set';

function capitalize(str) {
  return str.charAt(0).toUpperCase() + str.slice(1);
}

function addGetterSetter(constructor, target, attrs) {

  function addGetter(constructor, target, attr) {
    var method = GET + capitalize(attr);
    constructor.prototype[method] = function() {
      return target[method]();
    };
  }

  function addSetter(constructor, target, attr) {
    var method = SET + capitalize(attr);
    constructor.prototype[method] = function(value) {
      return target[method](value);
    };
  }
  for (var index = 0; index < attrs.length; index++) {
    addGetter(constructor, target, attrs[index]);
    addSetter(constructor, target, attrs[index]);
  }
}


现在,当我使用MyGroupGroup时,如下所示:

var items = [{
  id: 123,
  name: 'Abc'
}, {
  id: 131,
  name: 'Bca'
}, {
  id: 22,
  name: 'bc'
}];
var groups = [];
items.forEach(function(item) {
  var g = new MyGroup(item);
  groups.push(g);
});

groups.forEach(function(g) {
  console.log(g.getId()); //don't know why this logs 22 three times instead of all ids
});


group.forEach中,我不知道为什么要记录最后一项的ID。我无法理解出了什么问题。以及如何获得调用g.getId()的组。这是plunkr

最佳答案

这是因为您要向原型添加方法,并且每次上一个函数都在循环中覆盖,因此当forEach循环完成时,该函数保留对最后一个对象的引用。您需要为该对象添加功能:

function MyGroup(config) {
  var myAttrs = ['id', 'name'];
  this.g = new Group(config);
  addGetterSetter(this, this.g, myAttrs)
}
function addGetterSetter(object, target, attrs) {

  function addGetter(object, target, attr) {
    var method = GET + capitalize(attr);
    object[method] = function() {
      return target[method]();
    };
  }

  function addSetter(object, target, attr) {
    var method = SET + capitalize(attr);
    object[method] = function(value) {
      return target[method](value);
    };
  }
  for (var index = 0; index < attrs.length; index++) {
    addGetter(object, target, attrs[index]);
    addSetter(object, target, attrs[index]);
  }
}


JSFIDDLE

10-05 20:43