2

我扩展了Array原型:

if(typeof Array.prototype.filter === 'undefined') Array.prototype.filter = function(fun /*, thisp*/){
  var len = this.length;
  if(typeof fun != "function") throw new TypeError();

  var res = [], thisp = arguments[1];

  for(var i=0;i<len;i++){
    if(i in this){
      var val = this[i]; // in case fun mutates this
      if(fun.call(thisp, val, i, this)) res.push(val);
    }
  }

  return res;
};

例如我创建了数组:

var A = [ 1, 2, 3, 4, 5 ];

然后我添加了额外的属性,我将使用:

A.creator = 'Rustam';
A.created = new Date();

如果我将使用for-in循环,并且浏览器没有内置支持Array.filter,它将通过A.filter.

我知道这样:

for(var p in A) {
  if (!A.hasOwnProperty(p)) continue
  console.log(p)
};

有没有办法在不使用的情况下A.filter隐藏?for-inhasOwnProperty


更新回答。浏览器支持:

  • IE9+
  • FF4+
  • 铬合金
  • 歌剧 11.6+
  • 野生动物园 5+
4

1 回答 1

6

要定义不在循环中显示的属性,请使用Object.defineProperty

Object.defineProperty(Array.prototype, 'filter', {value:'XYZ'});

这扩展了一个使用默认属性描述符Array.prototype调用的属性,包括,这会导致该属性不显示在循环中。filterenumerable: falsefor( .. in ..)

参考

PS:不适用于旧浏览器我没有此 API 的浏览器兼容性矩阵。

于 2012-07-31T11:59:18.630 回答