我正在使用servlet打开一个带有下载文档链接的新选项卡,我需要的是在新选项卡上放置一条等待消息,因为下载需要3分钟才能开始,所以我不想要用户关闭选项卡,然后重试 这是我的servlet:
@Override
public void print() {
final String Code = getView().getReportingPanel().aComboBox.getValue().getCode();
String url = URL.encode(GWT.getModuleBaseURL() + "File?Code=" + Code + "&type=xlsx");
com.google.gwt.user.client.Window.open(url, "FileDownload", "");
}
谢谢! 最诚挚的问候。