Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 GWT UiBinder 创建 GWT 应用程序的视图。视图中有一个动态部分,我需要对外部服务器进行 jsonp 查询,并将 jsonp 查询的字符串结果显示到 gwt 视图页面中。
有没有巧妙的方法告诉 uibinder xml 文件如何显示这些动态 jsonp 结果?
它基本上是在视图的动态部分插入超链接列表。我们如何用 uibinder 做到这一点?
你不能。您应该在您的应用程序中检索此字符串,并将其注入您的视图中。
您可以创建一个自定义小部件来执行此操作,然后您可以在 Ui:Binder 中使用此小部件,但您应该考虑它会如何影响您的应用程序的自动化测试。