GWT Window#open
方法可用于打开新的浏览器窗口,但它适用于正常的同步 URL 连接。如何GWT RPC
在下面的新浏览器窗口中显示调用的异步结果?
myServiceAsync.getHtmlResult(new AsyncCallback<String>() {
@Override
public void onSuccess(String htmlResult) {
//how to display #htmlResult in a new browser window?
}
@Override
public void onFailure(Throwable caught) {}
});