ReactJS,Redux和DexieJS(IndexedDB)-隐身模式和Chrome v69中的错误

时间:2018-10-14 14:56:50

标签: javascript reactjs redux indexeddb

我目前正在学习ReactJS,因此决定创建一个简单的应用程序。

堆栈为:

  • 反应
  • Redux
  • 反应路由器
  • DexieJS(IndexedDB)

该应用程序正在运行。问题是,当我尝试在Firefox或隐身模式下(在Chrome中)对其进行测试时,出现此错误:

TypeError: Cannot read property 'apply' of undefined enter image description here

任何人都知道为什么会收到此错误以及如何处理该错误?我发现IndexedDB在Firefox和隐身模式下不可用,因此我尝试进行简单检查:

if(!window.indexedDB) {
 alert('Indexed DB is not supported by your browser. If you are running in incognito mode, please use the normal mode.')
}

但是这不起作用,我再次收到错误消息。

如果您想查看整个代码,这里是Github仓库: https://github.com/Webd01/BM

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

IndexedDB在Chrome隐身模式下可以正常工作,因此,如果您在那里遇到问题,则可能是由于其他原因引起的。

但是您正确地认为IndexedDB在Firefox私有浏览模式下并不好,尽管您在具体操作上有误。 window.indexedDB在Firefox私有浏览模式下不为null,但确实会给您upgradeneeded上的错误。我使用类似的方法来检测它(这也进行了其他浏览器兼容性检查):

var checkIDB = function () {
  if (typeof window.indexedDB === "undefined") {
    console.log("IndexedDB not supported at all!");
    return;
  }

  try {
    keyRange.only([1]);
  } catch (e) {
    console.log("Buggy Microsoft IndexedDB implementation");
    return;
  }

  var openRequest = window.indexedDB.open('firefox-private-test', 1);

  openRequest.onerror = function (evt) {
    console.error(evt.target.error);
    if (evt.target.error.message.includes("aborted")) {
      console.log("Some other error, maybe quota related:");
      console.log(evt.target.error);
    } else {
      console.log("Firefox private mode, probably:");
      console.log(evt.target.error);
    }
  }

  openRequest.onupgradeneeded = function (evt) {
    var db = evt.target.result;
    var one = db.createObjectStore('one', {
      autoIncrement: true,
      keyPath: 'key'
    });
    one.createIndex('one', 'one');
    one.add({one: 1});
    var two = db.createObjectStore('two', {
      autoIncrement: true,
      keyPath: 'key'
    });
    two.createIndex ('two', 'two');
    two.add({two: 2});
  };

  openRequest.onsuccess = function (evt) {
    var db = evt.target.result;
    var transaction;
    try {
      transaction = db.transaction(['one', 'two'], 'readwrite');
    } catch (e) {
      console.log("Some browser failed here, maybe an old version of Safari, I forget");
      console.log(e.target.error);
      return;
    }

    var count = 0;
    transaction.objectStore('one').index('one').openCursor().onsuccess = function (evt) {
      cursor = evt.target.result;
      if (cursor) {
        count += 1;
        cursor.continue();
      }
    };

    transaction.oncomplete = function () {
      db.close();
      if (count === 1) {
        console.log("All good!");
      } else {
        console.log("Buggy Safari 10 IndexedDB implementation")
      }
    };
  };
};