How to access IndexedDB from storage in webview?
问题 I have Designed database in IndexedDB in the website when the page is loaded but I want this DB in my android and IOs client, so I have created javascript function for access IndexedDb and it is worked for the console in the website. Now I want this value in my both of the Android and IOs clients. My Javascript function for getting value in DB var db; var request = indexedDB.open("newDatabase"); request.onerror = function(event) { alert("Why didn't you allow my web app to use IndexedDB?!"); }