1

我正在 Internet Explorer 8 上尝试来自http://couchapp.org/page/what-is-couchapp的一个简单示例,它只是抛出“对象不支持此函数或方法”以及指出的部分to 是“forEach”方法。我使用 jQuery 1.4.2 附带的 CouchBase 服务器 1.0.2。当我用 1.6 版本替换 jquery.js 时没有任何变化。jquery.couch.app.js 中已经存在 forEach 的补丁。有什么我能做的吗?!

(最终,我想让基于 jQuery 的 jsTree 在 IE 上运行,但 IE 甚至不加载我在本地保存的演示页面。)

<!DOCTYPE html>
<html>
<head><title>Tiny CouchApp</title></head>
<body>
<h1>Tiny CouchApp</h1>
<ul id="databases"></ul>
</body>
<script src="/_utils/script/jquery.js"></script>
<script src="/_utils/script/jquery.couch.js"></script>
<script>
$.couch.allDbs({
  success : function(dbs) {
    dbs.forEach(function(db) {
      $("#databases").append('<li><a href="/_utils/database.html?'+db+'">'+db+'</a></li>');
    });
  }
});

</script>
</html>

提前致谢。

编辑

通过将 forEach 更改为 map 并将以下函数添加到 jquery.couch.app.js,这个小应用程序确实可以工作。

if (!Array.prototype.map)
{
Array.prototype.map = function(fun/*, thisp*/)
{
    "use strict";
    var len = this.length;
    if (typeof fun != "function")
        throw new TypeError();

    var res = new Array(len);       
    var thisp = arguments[1];
    for (var i = 0; i < len; i++)
    {
        if (i in this)
            res[i] = fun.call(thisp, this[i], i, this);
    }

    return res;
};
}
4

0 回答 0