我有一个带提交按钮的面板。 onsubmit,我想写一些文本到文件并提供文件下载给用户。不确定如何去做。如果有人可以指向真正有用的链接或代码
答案 0 :(得分:0)
这并不容易。我使用了下载链接,但没有任何表单变量被下载链接使用,因为单击下载链接不会提交表单。它只是使用初始值。我不得不使用ajax onchange事件来更新表示表单组件的实例变量,然后使用下载链接根据用户输入创建文件。
答案 1 :(得分:0)
如entry on the Wicket wiki中所述,您需要创建构造文件的行为,然后从提交链接触发该行为。这将确保在创建文件之前完成模型更新。
从资源流创建请求的行为实现:
public abstract class AJAXDownload extends AbstractAjaxBehavior
{
private boolean addAntiCache;
public AJAXDownload() {
this(true);
}
public AJAXDownload(boolean addAntiCache) {
super();
this.addAntiCache = addAntiCache;
}
/**
* Call this method to initiate the download.
*/
public void initiate(AjaxRequestTarget target)
{
String url = getCallbackUrl().toString();
if (addAntiCache) {
url = url + (url.contains("?") ? "&" : "?");
url = url + "antiCache=" + System.currentTimeMillis();
}
// the timeout is needed to let Wicket release the channel
target.appendJavaScript("setTimeout(\"window.location.href='" + url + "'\", 100);");
}
public void onRequest()
{
ResourceStreamRequestHandler handler = new ResourceStreamRequestHandler(getResourceStream(),getFileName());
handler.setContentDisposition(ContentDisposition.ATTACHMENT);
getComponent().getRequestCycle().scheduleRequestHandlerAfterCurrent(handler);
}
/**
* Override this method for a file name which will let the browser prompt with a save/open dialog.
* @see ResourceStreamRequestTarget#getFileName()
*/
protected String getFileName()
{
return null;
}
/**
* Hook method providing the actual resource stream.
*/
protected abstract IResourceStream getResourceStream();
}
(提交)链接和行为实施:
final AJAXDownload download = new AJAXDownload()
{
@Override
protected IResourceStream getResourceStream()
{
return createResourceStream(item.getModelObject());
}
};
item.add(download);
item.add(new AjaxSubmitLink("link") {
@Override
public void onSubmit(AjaxRequestTarget target, Form<?> form)
{
// do whatever with the target, e.g. refresh components
target.add(...);
// finally initiate the download
download.initiate(target);
}
});
@magomi为响应this问题创建了类似的实现。