我们都知道数组上的for-in-loop绝对是邪恶的。尽管如此,它们仍然经常被使用,并且导致的错误很难追踪,尤其是当发生依赖于浏览器的情况时,例如由于indexOf
-shims 等。
所以,我编写了这个简单的代码片段,它为“ error
”属性添加了一个可枚举的getter Array.prototype
(不用于生产代码):
Object.defineProperty(Array.prototype, "error", {
enumerable: true,
get: function() {
if (this === Array.prototype) // that looks OK
return undefined;
if (window.confirm("Somebody who coded the site you're viewing runs through an Array with a for-in-loop.\nShame on him!\n\nDo you want to raise an Error to trace the origin?"))
throw new SyntaxError("Array traverse with for-in-loop, touching Array.prototype's 'error' property :-)");
}
});
您可以将其添加为所有域的greasemonkey 脚本,并且您将在几乎每个站点上看到警报:-) 它们中的大多数是由jQuery.extend
带有可疑参数的调用引起的,顺便说一句。
我现在的问题是:是否有任何情况可以使这种“错误”循环合法化,或者其他任何导致误报警报的情况?
我想知道这将如何影响我的代码的有用性。