JSP 中的 GWT AutoSuggest
我想在 JSP 中添加 GWT 自动建议文本框。
有人可以对此提供一些见解吗?
谢谢
I would like to add a GWT autosuggest textbox in JSP.
Could someone provide some insight into this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通常,GWT 被视为 Web 应用程序框架,与小部件框架不同。就我个人而言,我认为 GWT 太重了,无法仅向简单的网页添加自动建议,而是使用类似 jQuery autocomplete< /a>.
话虽如此,运行 GWT 代码并没有什么神奇之处。遵循 GWT 标准模块布局,只需将 JSP 页面设置为 GWT 主机页面,您可以在其中将路径更改为编译模块的绝对路径。
Typically GWT is considered a web application framework which is different to a widget framework. Personally I would consider GWT too heavy to just add an autosuggest to a simple web page and instead use something like jQuery autocomplete.
Having said that, there's nothing magical about running GWT code. Follow GWT standard module layout and just set up your JSP-page as a GWT host page where you alter the paths to be absolute to your compiled module.
这是我如何让建议框发挥作用的示例。当用户打字时,我对数据库进行 RPC 调用。
我同意你可以在 jQuery 中做类似的事情,但是当 GWT 有可用的小部件时你为什么要这样做呢?
希望这有帮助!
Here an example of how I was able to get a suggest box to work. I make an RPC call to the database while the user is typing.
I agree that you could do something similar in jQuery but why would you when GWT has the widget available?
Hope this helps!