当我单击客户端上的按钮时,我想使用 AJAX 在服务器端调用公共静态 Web 方法。静态方法将创建适当的文件。创建文件后,我需要将其下载到客户端桌面。我找到了John Culvinar 的 jquery 文件下载插件,但到目前为止还没有实现它。我知道使用这个插件还需要写一个cookie,这样它就知道下载完成了。我在哪里把这段代码放在服务器端?创建文件后?如果有人可以在这种情况下向我展示一个示例,我会很高兴,也许在jsfiddle.net
问问题
2562 次
2 回答
2
我建议用隐藏的 iframe 替换您的 ajax 请求,然后当您的服务器返回所述文件时,它会自动要求用户下载它。
//name of iframe
var strName = ("uploader" + (new Date()).getTime());
// the iframe
var jFrame = $( "<iframe name=\"" + strName + "\" src=\"about:blank\" />" ).css( "display", "none" );
jFrame.load(function( objEvent ){
// at this point the user should have been asked to download a file.
// Remove the iFrame from the document.
// Because FireFox has some issues with
// "Infinite thinking", let's put a small
// delay on the frame removal.
setTimeout(function(){
jFrame.remove();
},100);
});
var form = $('<form>').attr( "action", "upload_act.cfm" )
.attr( "method", "post" )
.attr( "enctype", "multipart/form-data" )
.attr( "encoding", "multipart/form-data" )
.attr( "target", strName );
form.append('<input type="hidden" name="somename">').val("someval");
$( "body:first" ).append( jFrame, form );
(以上代码原改编自http://www.bennadel.com/blog/1244-ColdFusion-jQuery-And-AJAX-File-Upload-Demo.htm)
另一种方法是使其成为一个两步过程。第 1 步生成文件并返回一个 url,第 2 步用户单击下载(这将是指向所述 url 的锚标记)。
于 2012-12-19T18:34:19.430 回答
1
如果您想使用 jquery 插件来增强用户体验,则无法从服务器启动下载。在这种情况下,最好的办法是在服务器上生成文件并让该方法返回文件的路径。然后只需 dl 使用插件。
例子:
$('#btnID').click(function(){
$.ajax({
type: "POST",
url: "/your_webmethod_url",
data: "{'webmethodParam1':'val1','webmethodParam2':'val2'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: fileGenerated,
error: fileNotGenerated
});
});
function fileGenerated(data, textStatus, jqXHR){
//this is the success callback method. start download automatically using the plugin
$.fileDownload(data.d); //returned data from webmethod goes in data.d
}
function fileNotGenerated(jqXHR, textStatus, errorThrown){
//this is the error callback method. do something to handle the error
alert(errorThrown);
}
于 2012-12-19T16:45:08.090 回答