是否有 Javascript 等同于 Array.prototype.find() 适用于旧版浏览器?
Is there a Javascript equivalent of Array.prototype.find() that works on older browsers?
查看 Array.prototype.find() 的 MDN 定义,我想知道是否还有另一个 javascript 方法来 return 来自基于谓词的数组中的第一个对象,它也可以工作在旧版浏览器上。
我知道 _underscore 和 Linq.JS 等第 3 方库可以执行此操作,但很好奇是否有更多 "native" 方法。
检查这个库:https://github.com/iabdelkareem/LINQ-To-JavaScript
它包含您寻找的 [firstOrDefault] 方法,例如:
var ar = [{name: "Ahmed", age: 18}, {name: "Mohamed", age:25}, {name:"Hossam", age:27}];
var firstMatch = ar.firstOrDefault(o=> o.age > 20); //Result {name: "Mohamed", age:25}
您可以使用 MDN Polyfill 在旧浏览器中覆盖此方法(阅读 Tushar 的评论)。
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;
};
}
查看 Array.prototype.find() 的 MDN 定义,我想知道是否还有另一个 javascript 方法来 return 来自基于谓词的数组中的第一个对象,它也可以工作在旧版浏览器上。
我知道 _underscore 和 Linq.JS 等第 3 方库可以执行此操作,但很好奇是否有更多 "native" 方法。
检查这个库:https://github.com/iabdelkareem/LINQ-To-JavaScript
它包含您寻找的 [firstOrDefault] 方法,例如:
var ar = [{name: "Ahmed", age: 18}, {name: "Mohamed", age:25}, {name:"Hossam", age:27}];
var firstMatch = ar.firstOrDefault(o=> o.age > 20); //Result {name: "Mohamed", age:25}
您可以使用 MDN Polyfill 在旧浏览器中覆盖此方法(阅读 Tushar 的评论)。
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;
};
}