Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created May 15, 2018 04:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/4f4729cef562498890e301bfffaf6687 to your computer and use it in GitHub Desktop.
Save goofmint/4f4729cef562498890e301bfffaf6687 to your computer and use it in GitHub Desktop.
let db;
let version = 2;
const request = indexedDB.open("database", version);
request.onerror = function(event) {
alert("IndexedDB が使えません");
};
request.onsuccess = function(event) {
db = event.target.result;
db.onclose = function(event) {
console.log('IndexeDBを閉じました');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment