<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function () {
var data = [{
"Id": "SWE",
"Country": "Sweden",
"Population": 9592552
}, {
"Id": "NOR",
"Country": "Norway",
"Population": 5084190
}];
function display(e) {
alert("E" + e);
var countryData = data.find(function (element, index, array) {
return element.Id === e;
});
alert(countryData.Population);
}
display('SWE');
});
</script>
</head>
</html>
上面发布的代码在Firefox和Chrome上正常运行,但我在Internet Explorer中收到错误。错误讯息:
Object doesn't support property or method 'find'
答案 0 :(得分:36)
您正在使用JavaScript array.find()
方法。请注意,这是标准的JS,与jQuery无关。实际上,问题中的整个代码根本不使用jQuery。
您可以在此处找到array.find()
的文档:https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/find
如果您滚动到此页面的底部,您会注意到它有浏览器支持信息,您将看到它表明IE不支持此方法。
具有讽刺意味的是,你最好的方法是使用jQuery,它具有所有浏览器都支持的类似功能。
答案 1 :(得分:29)
如上所述,IE中不支持array.find()
。
但是,您可以在此处阅读Polyfill:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find#Polyfill
此方法已添加到ECMAScript 2015规范和 可能尚未在所有JavaScript实现中提供。然而, 您可以使用以下代码段填充Array.prototype.find:
代码:
// https://tc39.github.io/ecma262/#sec-array.prototype.find
if (!Array.prototype.find) {
Object.defineProperty(Array.prototype, 'find', {
value: function(predicate) {
// 1. Let O be ? ToObject(this value).
if (this == null) {
throw new TypeError('"this" is null or not defined');
}
var o = Object(this);
// 2. Let len be ? ToLength(? Get(O, "length")).
var len = o.length >>> 0;
// 3. If IsCallable(predicate) is false, throw a TypeError exception.
if (typeof predicate !== 'function') {
throw new TypeError('predicate must be a function');
}
// 4. If thisArg was supplied, let T be thisArg; else let T be undefined.
var thisArg = arguments[1];
// 5. Let k be 0.
var k = 0;
// 6. Repeat, while k < len
while (k < len) {
// a. Let Pk be ! ToString(k).
// b. Let kValue be ? Get(O, Pk).
// c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).
// d. If testResult is true, return kValue.
var kValue = o[k];
if (predicate.call(thisArg, kValue, k, o)) {
return kValue;
}
// e. Increase k by 1.
k++;
}
// 7. Return undefined.
return undefined;
}
});
}
答案 2 :(得分:24)
Array.prototype.find
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find
答案 3 :(得分:18)
这是一种解决方法。您可以使用过滤器而不是查找;但是filter返回匹配对象的数组。 find
仅返回数组中的第一个匹配项。因此,为什么不使用以下过滤器;
data.filter(function (x) {
return x.Id === e
})[0];
答案 4 :(得分:1)
我通过添加以下 polyfill 解决了同一问题:
user_input = int(input())
digitone = 0
digittwo = 0
digitthree = 0
final = 0
if user_input < 10:
final = user_input * 100
print(final)
if user_input == 10:
final = user_input * 10
print(final)
if 10 < user_input < 100:
digitone = int(user_input % 10) * 100
if digitone == 0:
final = user_input*10
print(final)
else:
user_input = int(user_input /10)
digittwo = user_input * 10
final = digittwo + digitone
print(final)
if 100 <= user_input < 1000:
digitone = int(user_input % 10) * 100
user_input = int(user_input /10)
digittwo = int(user_input %10)*10
if digittwo == 0:
final = user_input*10
print(final)
else:
user_input = int(user_input / 10)
digitthree = user_input
final = digitthree + digittwo + digitone
if final < 100:
final = final * 10
print(final)
else:
print(final)
if user_input > 999:
print(0)
polyfill是一段代码(通常是Web上的JavaScript),用于在本身不支持它的旧版浏览器中提供现代功能。
希望有人会帮助您
答案 5 :(得分:0)
出于提及underscore's find方法的目的,它在IE中都没有问题。
答案 6 :(得分:-5)
Microsoft浏览器的Array.find
方法支持始于 Edge 。
W3Schools compatibility table表示支持从版本12开始,而Can I Use compatibility table表示版本12和14之间的支持未知,从版本15开始正式支持。