清除 Eclipse 的内部 Web 浏览器
我正在处理一个巨大的php项目,它有很多js,我想知道如何清除内部Web浏览器缓存,因为当我调试它时,内部Web浏览器会加载js文件的缓存版本。我没有尝试重建整个项目,因为它很大。
I'm working at a huge php project, it have many js, and I want to know how to clear the internal web browser cache, because when I'm debugging it, the internal web browser loads a cached version of js files. I didn't try rebuild the entire project because is big.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这也不是问题的确切答案,而是与之相关的一些内容。
现在我仍然没有在“Windows--首选项--常规--Web 浏览器”中找到一个简单的选项(我使用 Eclipse Indigo)来清除内部浏览器缓存! - 这表明大多数用户没有使用 eclipse 内部浏览器。
要清除累积的 URL,您可以从位于以下位置的文件中删除条目“值”internalWebBrowserHistory
我可以在 eclipse market-place 上看到一个名为 Advanced Browser 的插件。 - 但不确定它是否提供任何缓存清除功能 - 它只是谈论多个选项卡 - 需要尝试一下。
This is also not an exact answer to the question but some thing relevant to it.
Still now I don't find a simple option (I use Eclipse Indigo) on the "Windows--Preference--General--Web Browser" to clear the internal browser Cache !! - It shows that most of the users are not using the eclipse internal browser.
To clean away the accumulated URL you can remove the entry "value" internalWebBrowserHistory from the file located in
I can see a plugin called Advanced Browser on eclipse market-place.. - But not sure it gives any cache clearing facility - it just talks about multiple tab - Need to try this.
不完全是您问题的答案,但我遇到了同样的问题,并通过使用外部浏览器解决了它:使用 Eclipse Indigo 和 Firefox,即使在调试 php 时,它也能开箱即用。选择Eclipse设置->一般->网络浏览器 ->使用外部 Web 浏览器并选择/添加 Firefox。
在 Firefox 中,您似乎只需要刷新网站即可获取 javascript 代码的当前版本,此外您还可以使用 Firebug
Not exactly an answer to your question, but I had the same problem and solved it by using an external browser: With Eclipse Indigo and Firefox it worked out of the box even when debugging php. Select Eclipse Settings -> General -> Web Browser -> Use external web browser and select/add firefox.
It seems in Firefox you simply need to refresh the site to get a current version of your javascript code, plus you can use Firebug
该文件包含:
换行符是否应该像这样转义?
That file contains:
Are the newlines supposed to be escaped like that?
缓存的位置取决于 Eclipse 是使用 xulrunner 还是 libwebkit 作为内部 Web 浏览器。
对于 xulrunner,缓存的位置是特定于平台的:
Mozilla/eclipse/Cache
目录或Application Data
目录中在用户的个人资料下。~/.mozilla/eclipse/Cache
目录中。从缓存中删除文件可能就足够了,但如果有疑问,您可能需要重新启动内部 Web 浏览器和/或 Eclipse。
The location of the cache depends on whether Eclipse uses xulrunner or libwebkit for the internal web browser.
For xulrunner, the location of the cache is platform specific:
Mozilla/eclipse/Cache
directory under the user's home directory or theApplication Data
directory under the user's profile.~/.mozilla/eclipse/Cache
directory.Deleting files from the cache might be sufficient, but if in doubt, you may need to restart the internal web browser and/or Eclipse.