如何更改字符串的查找方法?

时间:2016-04-28 13:13:21

标签: javascript

如何替换find方法。它使用不正确。 IE没有看到var mail。

var mail = textObj.products.find(function ( itm ) { return itm.name == c }).mail

2 个答案:

答案 0 :(得分:2)

IE和Opera(source)尚不支持

Array.prototype.find()

如果要使用它,则应为其插入Polyfill功能:

if (!Array.prototype.find) {
  Array.prototype.find = function(predicate) {
    if (this === null) {
      throw new TypeError('Array.prototype.find called on null or undefined');
    }
    if (typeof predicate !== 'function') {
      throw new TypeError('predicate must be a function');
    }
    var list = Object(this);
    var length = list.length >>> 0;
    var thisArg = arguments[1];
    var value;

    for (var i = 0; i < length; i++) {
      value = list[i];
      if (predicate.call(thisArg, value, i, list)) {
        return value;
      }
    }
    return undefined;
  };
}

或者,您可以使用IE9(及更高版本)中提供的Array.prototype.filter() function

答案 1 :(得分:1)

这是experimental technology,并不是每个浏览器都支持。您应该使用filter代替:

textObj.products.filter(function ( itm ) { return itm.name == c })[0].mail