如何替换find方法。它使用不正确。 IE没有看到var mail。
var mail = textObj.products.find(function ( itm ) { return itm.name == c }).mail
答案 0 :(得分:2)
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