Firefox中indexedDB.open上的'UnknownError'

时间:2017-10-03 21:10:14

标签: javascript firefox indexeddb

我在使用indexedDB时遇到了一个非常基本的失败。在当前的Firefox(56.0,64位)中运行,但我已经看到这个问题已经有一段时间了。

以下相当简单的HTML / Javascript演示了这个问题:

<!DOCTYPE html>
<html>
<head>
<title>indexedDB simple test</title>
<script src="/fb/jquery-2.2.4.min.js"></script>
</head>
<body>
<div id="wrapper"></div>
<script> 
    try {
        if ('indexedDB' in window) {
            $('#wrapper').append('Has native indexedDB<br />'); 
        } else {
            indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB;
            IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction;
            IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange;
            $('#wrapper').append('Has indexedDB, but not native<br />'); 
        }
        if (indexedDB) {
            var ver = 1;
            if ( ! 'open' in indexedDB ) {
                $('#wrapper').append('indexedDB.open doesn\'t exist.<br />');
            }
            if ( typeof indexedDB.open != 'function' ) {
                $('#wrapper').append('indexedDB.open is not a function.<br />');
            }
            try {
                var request = indexedDB.open("foo", ver);
            } catch (ex) {
                $('#wrapper').append('indexedDB.open threw error.<br />');
            }
        }
    } catch (ex) {
    }
</script> 
</body>

indexedDB显示为原生; indexedDB.open显示为现有功能;但是当它被调用时,Web控制台会在indexed_db_simple_test.html:28:30显示“UnknownError”。我不知道可能出现什么问题。

1 个答案:

答案 0 :(得分:2)

我现在已经处理了这个问题几天了。在我们的例子中,我们发现问题出在使用Firefox ESR的用户身上,似乎某种程度上,当配置文件因升级而受损时,它会使indexedDB无法正常工作。我们发现的修复是使用此命令创建新的配置文件:

$ /Applications/Firefox.app/Contents/MacOS/firefox-bin -P

如果这确实解决了您的问题,那么您可以在firefox问题中看到它:https://bugzilla.mozilla.org/show_bug.cgi?id=1246615

有关该配置文件命令的详细信息,请参阅文档:https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles

我们当前的解决方案不仅让应用程序爆炸,还要进行功能检查,基本上是这样的:

var DBOpenRequest = window.indexedDB.open('someDb');

DBOpenRequest.onerror = function(event) {
  window.location.href = '/unsupported_browser.html';
};

我们还要求用户修改他们的个人资料以启用我们的应用程序(依赖于indexedDB工作)。

我希望这有帮助!