Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created July 7, 2021 18:36
Show Gist options
  • Save Akifcan/b7682293edb920a78f44d90369f3ffce to your computer and use it in GitHub Desktop.
Save Akifcan/b7682293edb920a78f44d90369f3ffce to your computer and use it in GitHub Desktop.
delete
var request = window.indexedDB.open("photos", 1);
var request = db.transaction(["photos"], "readwrite") .objectStore("photos")
 .delete(2); //bu değerimizi primary key değerine göre belirtiyoruz. yani id keyimiz.
 request.onsuccess = function (event) {
 console.log('deleted!');
 };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment