Created
July 7, 2021 18:38
-
-
Save Akifcan/5b7d16c302cc08117ddda72ca449576f to your computer and use it in GitHub Desktop.
list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var requestfile = window.indexedDB.open("file", 1); | |
var objectStore = db.transaction("photos").objectStore("photos"); | |
objectStore.getAll().onsuccess = function (event) { | |
console.log(event.target.result) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment