我正在尝试添加dropzone.js,我想用文件传递另一个参数,所以我把隐藏的输入放在表单中。我可以上传文件,可以用Java部分阅读,但我看不懂type_chooser,
------WebKitFormBoundaryZxF6MCYJpTOLUokN
Content-Disposition: form-data; name="type_chooser"
2
------WebKitFormBoundaryZxF6MCYJpTOLUokN
Content-Disposition: form-data; name="file"; filename="isci.xlsx"
Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
所以,如果我写;
request.getParameter("type_chooser");
我得到了空
我怎样才能获得type_chooser?
注意:我试过了;
dropzone.on("sending,function(file,xhr,data){
data.append("type_chooser","1");
});
这提供了dropzone形式的隐藏字段的相同输出,它们都发送type_chooser但我无法在java中读取它
答案 0 :(得分:25)
您可以将数据与formdata
一起追加 $("div#dropzone_profile_photo").dropzone({
url: "/file-upload/",
init: function() {
this.on("sending", function(file, xhr, formData){
formData.append("data", "loremipsum");
});
}
});
$("div#dropzone_profile_photo").dropzone({
url: "/test",
init: function() {
this.on("sending", function(file, xhr, formData) {
formData.append("data", "loremipsum");
console.log(formData)
});
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://rawgit.com/enyo/dropzone/master/dist/dropzone.js"></script>
<link rel="stylesheet" href="https://rawgit.com/enyo/dropzone/master/dist/dropzone.css">
<div id="dropzone_profile_photo" style="width:400px;height:400px; background-color:blue"></div>
答案 1 :(得分:12)
Mine与SahinYanlık相似
var myDropzone = new Dropzone(dropzoneid,
{
url: "/files/post",
acceptedFiles: 'image/*',
paramName: "file", // The name that will be used to transfer the file
maxFilesize: 1, // MB
maxFiles: 1,
init: function () {
// Using a closure.
var _this = this;
// Setup the observer for the button.
$("#clear-dropzone").on("click", function () {
// Using "_this" here, because "this" doesn't point to the dropzone anymore
_this.removeAllFiles();
// If you want to cancel uploads as well, you
// could also call _this.removeAllFiles(true);
});
//this.on("maxfilesexceeded", function (file)
//{
// this.removeFile(file);
//});
START(这是发送附加数据的覆盖)
this.on("sending", function(file, xhr, data) {
data.append("filetype", "avataruploadtype");
});
END
this.on("addedfile", function() {
if (this.files[1] != null) {
this.removeFile(this.files[0]);
}
});
this.on("removedfile", function (file) {
//html manipulation to disable and select certain page stuff
});
this.on("success", function (file) {
//html manipulation to disable and select certain page stuff });
},
accept: function (file, done) {
if (file.name == "justinbieber.jpg") {
done("Naha, you don't."); //just in case!!!!
} else {
//console.log("done!!!");
console.log(done());
}
},
headers: { "avatar": "avatarupload" }, //you might be also to piggyback of the headers in serverside
uploadMultiple: false,
clickable: true,
addRemoveLinks: true,
});
答案 2 :(得分:8)
尝试将其添加到您的获取参数列表中,如此
<form action="/UnitSummary/UploadFile?param1=value¶m2=value" class="dropzone" enctype="multipart/form-data" id="imgUpload" method="post">
<div class="fallback">
<input name="file" type="file" multiple />
<input type="submit" value="Upload" />
</div>
</form>
答案 3 :(得分:7)
大家研究发现这个解决方案后,我有同样的问题,对我来说,我正在使用jQuery dropzone。
$("#dropzone").dropzone({
url: "abcd.php",
dictDefaultMessage: "Drop files here or<br>click to upload...",
params: {'param_1':'xyz','para_2':'aaa'}
});
params
选项是我发现使用dropzone发送附加数据的选项。
params
中已收到$_POST
选项参数,$_FILE
中已上传文件。
希望这会有所帮助。
答案 4 :(得分:3)
我遇到了同样的问题,我无法在java中阅读
所以我试过这个并且有效。
contentDropZone.on('processing', function(file){
console.log("Processing the file");
contentDropZone.options.url = "Uploader?campaignid="+campaignid+"&circleid="+circleid;
});
答案 5 :(得分:2)
这是一个带有额外参数的完整工作dropzone,因为在线发现的其他方法对我不起作用。
Dropzone.autoDiscover = false;
var valid_extensions= /(\.pdf|\.doc|\.docx|\.xls|\.xlsx|\.jpg|\.jpeg|\.png|\.tiff|\.wpd)$/i;
$('#insurance_type').on('change',function(){
ins_Type=$(this).val();
});
$('#insurance_expirationdate').on('change',function(){
ins_Date=$(this).val();
});
myDropzone = new Dropzone("#dropzdoc",{
url: 'Your URL where to send the data to',
//this is how extra parameters got passed to dropzone
sending: function(file, xhr, formData) {
formData.append("insurance_type", ins_Type); //name and value
formData.append("insurance_expirationdate", ins_Date); //name and value
},
//end of sending extra parameters
acceptedFiles:".pdf,.doc,.docx,.xls,.xlsx,.jpg,.jpeg,.png,.tiff,.wpd",
dictInvalidFileType: "You can't upload files of this type, only png or jpg file",
paramName: "insurance_doc",
createImageThumbnails:false,
dictDefaultMessage: "<div style='text-align:left;'>- Select your Insurance Type.<br>\n\
- Select 1 Date.<br>\n\
- Drop your file here.<br><div>\n\
Only <span style='color:red;'>1</span> file is acccepted.",
autoProcessQueue:false,
maxFiles: 1
});
myDropzone.on("processing", function(file, progress) {
$('#upload_process').fadeIn();
});
myDropzone.on("success", function(file,response) {
$('#upload_process').fadeOut();
});
myDropzone.on("addedfile", function(file) {
//test extension files
if (this.files.length) {
var _i, _len;
for (_i = 0, _len = this.files.length; _i < _len; _i++)
{
if(valid_extensions.test(this.files[_i].name)==false)
{
alert('Invalid file extension.\nAllowed file extensions: pdf, doc, docx, xls, xlsx, jpg, jpeg, png, tiff, wpd');
this.removeFile(file);
return;
}
}
;
//if all good then procced the queue
if(ins_Type !==''&& ins_Date !==''){
this.options.autoProcessQueue = true;
this.processQueue();
}else{
alert('Date are empty');
this.removeAllFiles(file);
}
});
//dropzone willl be clickable after this action below
$('.files-list').on('click','img', function(){
if($('.files-list li img').length == 0){
myDropzone.removeAllFiles(true);
myDropzone.setupEventListeners();
}
});
//dropzone will not be clickable after this action below
if($('.files-list li').children('img').length > 0){
myDropzone.removeEventListeners();
}
答案 6 :(得分:1)
使用params: function params(files, xhr, chunk) { return { '_token' : __csrf_token }; }
选项,如下面的示例代码块所示。
Dropzone.options.uploadDropzone = {
paramName: "__NAME",
maxFilesize: 6,
thumbnailWidth: 400,
thumbnailHeight: 400,
dictDefaultMessage: 'Drop or Paste here.',
params: function params(files, xhr, chunk) { return { '_token' : __csrf_token }; }
};
答案 7 :(得分:0)
好吧,对于那些迟到了我的人,我将保留tips section of the docs的答案:
Dropzone将提交您在dropzone表单中具有的所有隐藏字段。因此,这是提交其他数据的简便方法。您还可以使用params选项。