在 GSP 页面内添加 gwt 标签
是否可以将 gwt 标签包含到 gsp 页面中。我已经安装了 gwt grails 插件,但还无法实现这一目标。
安装 dojo grails 插件后,可以将 dojo 标签包含到 gsp 页面中
Is it possible to include gwt tags into gsp page. I've installed gwt grails plugin but I haven't been able to achieve this yet.
Its possible to include dojo tags into gsp page after u install the dojo grails plugin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您混淆了应该使用这些标签的上下文。
GSP 标签用于创建服务器端模板,该模板将作为完整的 HTML 呈现并发送到浏览器。 GWT 的
ui:binder
标签用于创建由 GWT 编译的模板,并用于在浏览器的客户端生成页面。他们在两个不同的领域运作。I think you're mixing up the context where these tags are supposed to be used.
GSP tags are for creating a server-side template that will be rendered and sent to the browser as completed HTML. GWT's
ui:binder
tags are for creating a template that's compiled by GWT and used to generate a page on the client-side within the browser. They operate in two different realms.