Created
July 7, 2021 18:40
-
-
Save Akifcan/c9d6e5854cf1b9dc462d71ba14da8ef3 to your computer and use it in GitHub Desktop.
create indeddb objectstore
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
requestfile.onupgradeneeded = function (event) { | |
var db = event.target.result; | |
var objectStore = db.createObjectStore("photos", { keyPath: "id", autoIncrement: true }); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment