我想了解IndexedDB的優點,並通過documentation。作爲Javascript noob,我無法理解一些文檔。如何閱讀Javascript文檔?
所以通過修修補補,我想通了,代碼來處理deleteDatabase電話是:
var req = indexedDB.deleteDatabase(DB_NAME);
req.onsuccess = function() {
console.log("Deleted database successfully");
};
req.onerror = function (e) {
console.log(e.message);
};
req.onblocked = function() {
console.log('Database is blocked right now...try again later');
};
凡文檔中(甚至智能感知像VS或昇華,瀏覽器的開發工具和類似工具)不它指出.onerror
事件通過錯誤對象e
,但.onblocked
不。
你可以編輯你的問題標題,以更具體的索引數據庫? – Josh 2014-10-11 02:40:50
@Josh我提出了IndexedDB爲例。但我經常遇到與其他功能類似的問題。 – AngryHacker 2014-10-11 19:46:48