本文介绍了在IE 11中读取indexedDB数据和文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试查找IE 11存储indexedDB文件的位置.有人知道位置吗?

I'm trying to locate where IE 11 is storing indexedDB file(s). Does anyone know the location?

还有,在Chrome中,我可以通过开发人员工具查看indexedDB,浏览不同的商店并查询数据库.

Futhermore, in Chrome, I'm able to look at the indexedDB via developer tools, navigate the different stores and query the database.

有人知道IE 11是否提供此功能吗?

Does anyone know if IE 11 offers this capability?

推荐答案

对于IE中的调试,您可以按照此处所述使用外部库- http://blogs.msdn.com/b/ie/archive/2012/01/25/debugging-indexeddb-applications .aspx

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

您需要在应用程序中嵌入iframe,从中可以查看数据.

You need to embed an iframe in your application, from where you can see the data.

您的IndexedDB文件存储在以下位置:

Your files of IndexedDB are stored at this position:

C:\Users\{Your-User-Name}\AppData\Local\Microsoft\Internet Explorer\Indexed DB

这篇关于在IE 11中读取indexedDB数据和文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-19 04:40