如何将网页嵌入 GWT/GXT Web 应用程序?
我正在努力(概念上)重新创建我在 GWT/GXT 中用 Cappuccino 编写的原型。 Cappuccino 使得使用 WebView 将外部网页显示为应用程序的一部分变得非常简单。
但是,我找不到任何方法可以使用 GWT/GXT 来做到这一点。有一个 HtmlContainer 小部件,但这似乎是用于其他用途。关于如何执行此操作有什么建议吗?
I am working to recreate (conceptually) a prototype I've written in Cappuccino in GWT/GXT. Cappuccino made it trivial to display an external webpage as part of the application by using a WebView.
However, I cannot find any way to do this with GWT/GXT. There is a HtmlContainer widget, but this seems to be intended for something else. Any suggestions on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有 html 代码并且只想渲染它,请使用“HTML”小部件。形成文档
如果您想在您的网络应用程序中显示不同的页面,例如 stackoverflow.com,请使用“frame”小部件。来自文档:
If you have the html-code and just want to render it use the "HTML"-widget. Form the docs
If you want to display a different page e.g. stackoverflow.com in your webapp use the "frame" widget. From the docs:
您可以设置 ContentPanel
例如,
您也可以对 GXT Window 类执行此操作。
You can set the url of a ContentPanel
e.g.
You can also do this for the GXT Window class too.