将relativePath附加到文件夹中每个文件的formData

时间:2013-10-30 07:45:55

标签: jquery-file-upload

我正在使用Jquery-File-Upload(https://github.com/blueimp/jQuery-File-Upload)进行整个文件夹上传。 我在使用附加relativePath 上传文件到 formData 对象时遇到问题。以下是代码:

var formData = $( ":input" ).serializeArray();
  $('#upload').bind('fileuploadsubmit', function (e, data) {
    $.each(data.files, function (index, file) {
      console.log('Added file: ' + file.name+ ' Path :'+file.relativePath);
      data.formData = {'relativePath': file.relativePath};
    });
     console.log(data);
  });

我无法在服务器端为每个单独的文件获取'relativePath'参数。我正在传递此参数以保留服务器上的目录结构。

0 个答案:

没有答案