问题
I'm trying to locate where IE 11 is storing indexedDB file(s). Does anyone know the location?
Futhermore, in Chrome, I'm able to look at the indexedDB via developer tools, navigate the different stores and query the database.
Does anyone know if IE 11 offers this capability?
回答1:
For Debugging in IE, you can use an external library as described here -http://blogs.msdn.com/b/ie/archive/2012/01/25/debugging-indexeddb-applications.aspx
You need to embed an iframe in your application, from where you can see the data.
Your files of IndexedDB are stored at this position:
C:\Users\{Your-User-Name}\AppData\Local\Microsoft\Internet Explorer\Indexed DB
来源:https://stackoverflow.com/questions/20530536/reading-indexeddb-data-and-file-in-ie-11