1

我是 javascript 和 pouchdb 的新手。我做了一个简单的html文件

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <script src="js/pouch.alpha.js"></script>
        <title>New Web Project Page</title>
    </head>
    <body>
        <h1>New Web Project Page</h1>
        <script>
            Pouch('idb://test', function(err, db) {
                // Use db to call further functions
            });
        </script>
    </body>
</html>

我下载了 pouch.alpha.js 文件并将其放入“js”文件夹中。

我只想尝试 pouchdb.com 网站上的第一个示例来创建数据库,但 Firefox>Tools>Web Developer>Error console 给了我错误:

未捕获的异常:无效的适配器

4

1 回答 1

0

你安装的是什么版本的火狐?我刚刚复制了您的确切测试,它适用于 Firefox 16

于 2012-10-16T19:51:45.337 回答