清除 Eclipse 的内部 Web 浏览器

发布于 2024-12-09 20:41:16 字数 97 浏览 0 评论 0原文

我正在处理一个巨大的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

画尸师 2024-12-16 20:41:16

这也不是问题的确切答案,而是与之相关的一些内容。
现在我仍然没有在“Windows--首选项--常规--Web 浏览器”中找到一个简单的选项(我使用 Eclipse Indigo)来清除内部浏览器缓存! - 这表明大多数用户没有使用 eclipse 内部浏览器。

要清除累积的 URL,您可以从位于以下位置的文件中删除条目“internalWebBrowserHistory

yourworkspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.browser.prefs

我可以在 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

yourworkspace/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.browser.prefs

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.

瘫痪情歌 2024-12-16 20:41:16

不完全是您问题的答案,但我遇到了同样的问题,并通过使用外部浏览器解决了它:使用 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

留蓝 2024-12-16 20:41:16

该文件包含:

    browsers=<?xml version\="1.0" encoding\="UTF-8"?>\n<web-browsers current\="0">\n<system/>\n<external location\="/usr/bin/firefox" name\="Firefox"/>\n</web-browsers>
eclipse.preferences.version=1

换行符是否应该像这样转义?

That file contains:

    browsers=<?xml version\="1.0" encoding\="UTF-8"?>\n<web-browsers current\="0">\n<system/>\n<external location\="/usr/bin/firefox" name\="Firefox"/>\n</web-browsers>
eclipse.preferences.version=1

Are the newlines supposed to be escaped like that?

萝莉病 2024-12-16 20:41:16

缓存的位置取决于 Eclipse 是使用 xulrunner 还是 libwebkit 作为内部 Web 浏览器。

对于 xulrunner,缓存的位置是特定于平台的:

  • 在 Windows 上,它通常位于用户主目录下的 Mozilla/eclipse/Cache 目录或 Application Data 目录中在用户的个人资料下。
  • 在 Linux 和 Mac 上,浏览器缓存位于 ~/.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:

  • On Windows, it is usually in the Mozilla/eclipse/Cache directory under the user's home directory or the Application Data directory under the user's profile.
  • On Linux and Mac, the browser cache is in the ~/.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.

独闯女儿国 2024-12-16 20:41:16
  1. 转到内部浏览器输出页面
  2. 鼠标:右键单击并选择刷新
  1. Go to Internal Browser Output Page
  2. Mouse: Right-click and Select Refresh
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文