我想使用 plupload 将两个文件发送到 web 服务。该服务希望看到两个 xsd 类型的文件,它还应该以第一个输入字段名为“sourceSchema”而第二个输入字段名为“targetSchema”的方式接收文件。
如果我能澄清 plupload 如何发送这些文件,我将不胜感激,我可以重命名输入字段。它如何提交表格?
我的代码是:
// Setup html5 version
$("#html5_uploader").pluploadQueue({
// General settings
runtimes : 'html5',
url : schemaMatchingUrl,
unique_names : true,
filters : [ {
title : "Excel sheets",
extensions : "xls,csv,xlsx"
}, {
title : "XSD files",
extensions : "xsd"
} ],
// Resize images on clientside if we can
resize : {
width : 320,
height : 240,
quality : 90
},
init : {
FilesAdded: function(up, files) {
plupload.each(files, function(file) {
if (up.files.length > 2) {
alert("Sorry .. Maximum two files are allowed !!");
up.removeFile(file);
}
});
if (up.files.length >= 2) {
$('#pickfiles').hide('slow');
}
},
FilesRemoved: function(up, files) {
if (up.files.length < 2) {
$('#pickfiles').fadeIn('slow');
}
}
},
multi_selection: false
});