GWT IE9 开发模式错误
如图所示,在 IE9 中打开页面时出现以下错误。我使用的是 GWT 2.3.0 和 IE9。
As pictured I see the following error when opening my page in IE9. I am on GWT 2.3.0 and IE9.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
gwt.xml
中是否有
标记限制user.agent
属性的值?当模块的运行时配置与编译时使用的user.agent
值不一致时,UserAgentAsserter
会生成此消息,作为健全性检查。Is there a
<set-property>
tag in yourgwt.xml
that restricts the values of theuser.agent
property? This message is generated byUserAgentAsserter
as a sanity-check when the runtime configuration of the module doesn't line up with theuser.agent
values it was compiled with.添加
到您的模块描述 (
gwt.xml
)。Add
to your module description (
gwt.xml
).