使用jQuery File Upload插件在上传之前获取上传文件名

前端之家收集整理的这篇文章主要介绍了使用jQuery File Upload插件在上传之前获取上传文件名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用jQuery文件上传插件 https://github.com/blueimp/jQuery-File-Upload/wiki将多个文件上传到服务器.我将使用自定义Web服务将上传的图像存储在服务器上.但是,除了POST请求主体之外,我还需要将正在上载的文件名称传递给Web服务.因此,对于每个文件传输,我还需要将该文件名称传递给Web服务.有人可以告诉我如何获取文件名并将其与每个上传请求一起发送?我基本上需要从现场获取它,没有任何额外的输入字段.如果用户选择了10个文件,我需要为队列中的每个文件取名,并使用上传请求提交.

谢谢.

解决方法

好的,这是有效的解决方案:
// Storing the file name in the queue
var fileName = "";

// On file add assigning the name of that file to the variable to pass to the web service
$('#fileupload').bind('fileuploadadd',function (e,data) {
  $.each(data.files,function (index,file) {
    fileName = file.name;
  });
});

// On file upload submit - assigning the file name value to the form data
$('#fileupload').bind('fileuploadsubmit',data) {
  data.formData = {"file" : fileName};
});
原文链接:https://www.f2er.com/jquery/176716.html

猜你在找的jQuery相关文章