GWT 托管模式浏览器采用什么引擎?
根据我在网上阅读/查看的有关使用 GWT 的内容,关键是在 托管模式浏览器与在普通浏览器中编译和测试。
作为 UI 开发人员 - 使用自定义/嵌入式浏览器时,渲染引擎是难题的关键部分。
因此(因为我在任何地方都找不到信息),托管模式浏览器使用什么浏览器渲染引擎?
壁虎(例如火狐) Trident(例如 Internet Explorer) Webkit(例如 Safari/Chrome)
如果已知,引擎的版本是什么?例如(IE 的 IE6 版本),或(FF 的 3.5.x 版本)等。
From what I've read/viewed online about using GWT, the key is to develop/debug in the Hosted Mode browser versus compiling and testing in normal browsers.
As a UI developer - the rendering engine is a key piece of the puzzle when using a custom/embedded browser.
Thus (since I can't find the info anywhere), what browser rendering engine is used by the Hosted Mode browser?
Gecko (e.g. Firefox)
Trident (e.g. Internet Explorer)
Webkit (e.g. Safari/Chrome)
And if known, which version of the engine? e.g. (the IE6 ver of IE), or (the 3.5.x ver of FF), etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据您的操作系统,GWT 使用以下浏览器引擎:
在 GWT 2.0(尚未正式发布)中,托管模式浏览器被在浏览器中运行的插件所取代,称为进程外托管模式 (OOPHM),您可以在此处阅读有关它的更多信息:http://code.google.com/p/google-web-toolkit/维基/DesignOOPHM。
对于我的 UI 开发来说,大多数 UI 问题都与 css 有关。我的开发过程包括在托管模式下运行以测试代码(业务逻辑)并编译到Web模式以修复不同浏览器中的CSS问题,使用浏览器插件动态更改CSS。
Depending on your operating system GWT uses the following browser engines:
With GWT 2.0 (which is not yet officially released) the hosted mode browser is replaced by plugins running in the browser, called Out of Process Hosted Mode (OOPHM) you can read more about it here: http://code.google.com/p/google-web-toolkit/wiki/DesignOOPHM.
For my UI development, most UI issues have to do with css. My development process consists of running in hosted mode to test the code (business logic) and compile to web mode to fix the CSS issues in different browsers, using browser plugins to dynamically alter the css.
GWT 2.0 应该可以解决所有问题。它将允许您使用每个主要浏览器进行调试。请参阅此链接了解完整详情。在过去,我非常确定托管模式使用特定平台的本机浏览器引擎(Mac 上的 safari,即 Windows 上的 Safari,Linux 上的 Mozilla),但最近可能已更改为 WebKit。
GWT 2.0 should get you all fixed up. It will allow you to use each of the main browsers for debug. See this link for full details. In the past I'm pretty sure hosted mode used the native browser engine for the specific platform(safari on mac, ie on windows, mozilla on linux) but this may have changed to webkit recently.