FirefoxでIndexedDBが利用できないときの対処法
2733 ワード
IndexedDBを利用しているアドオンのユーザから報告が寄せられたので調査した。
関連バグ: https://bugzilla.mozilla.org/show_bug.cgi?id=944918
解決までのやり取り: https://github.com/sienori/Tab-Session-Manager/issues/210
現象
window.indexedDB.open
すると以下のエラーを吐く。
アドオンやwebサイトに関わらず,IndexedDBを利用している全てのサービスで再現性がある。
window.indexedDB.open('test', 1).onerror=(e=>{
console.log(e.target.error.name);
console.log(e.target.error.message);
});
//UnknownError
//The operation failed for reasons unrelated to the database itself and not covered by any other error code
解決方法
プロファイルのストレージが何らかの理由で破損していることが原因らしい。
以下の手順で初期化すれば解決する。
Author And Source
この問題について(FirefoxでIndexedDBが利用できないときの対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/sienori/items/85289c3e647ab82e6b37著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .