在 Chrome 中执行 Ctrl+F5 时出现 GWT 托管模式问题:CSS 不再渲染
我的 GWT 应用程序在托管模式下遇到一个奇怪的问题。我在网页上执行了“CTRL+F5”,从那时起,我的应用程序 css 不再呈现。现在,我有一个丑陋的应用程序,除了标签之外什么也没有,没有样式元素,尽管我已经验证了所有资源(css、图像等)都存在。
甚至奇怪的是,该应用程序在 Internet Explorer 上正常呈现(从未想过我会将 IE 和通常放在同一个句子中:D),但它在 Chrome 和 Firefox 上不起作用。
有人在开发模式下经历过这种情况吗?这让我抓狂...请帮忙...
提前致谢
I have a weird problem on my GWT app in hosted mode. I did a "CTRL+F5" on my web page and since then, my app css didn't render anymore. Now, I have an ugly app with nothing more than labels and no styling elements even though I have verified that all resources (css, images and so on) are present.
Even weird fact, the app renders normally on Internet Explorer (never thought I would put IE and normally in the same sentence :D) but it's not working on Chrome and Firefox.
Has anybody already experienced this in dev mode ? It's getting me crazy ... please help ...
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“丑陋”页面意味着你的CSS不再加载。 IE 可能会缓存它们,因此页面仍然可以正确呈现。
使用 Chrome 上的开发者控制台或 Firefox 上的 firebug 来检查资源的加载。
Chrome:右键单击任何元素 ->检查元素 ->选择网络选项卡->重新加载页面
"Ugly" page means that your css does not load anymore. IE possibly caches them so page still renders properly.
Use developer console on Chrome or firebug on Firefox to inspect loading of resources.
Chrome: right-click on any element -> Inspect Element -> select Network tab -> reload page