问题描述
- uploadify3.2.1用formDate向servlet动态传递参数的问题,已经要崩溃了
-
这个传的参数,在servlet怎么用request都取不到,官方文档的方案也不对,已经疯了。。$("#uploadify").uploadify({ 'auto' : true, 'swf' : 'js/uploadify.swf', 'folder' : '/uploads', 'uploader' : url, 'method' : 'GET', 'cancelImg' : 'img/uploadify-cancel.png', 'progressData' : 'percentage', 'formData' : {"userName" : userName}, // "fileTypeDesc" : 'rar文件或zip文件', // "fileTypeExts" : '*.rar;*.zip', //控制可上传文件的扩展名,启用本项时需同时声明fileDesc // 'multi' : true, 'buttonText' : '上传', 'onUploadStart' : function (file) { $("#uploadify").uploadify("settings",'userName',userName); }, 'onUploadSuccess' : function (file, data, response) { $('#' + file.id).find('.data').html('上传完毕!'); }, 'onUploadError ' : function (file, errorCode, errorMsg, errorString){ $('#' + file.id).find('.data').html('上传失败!'+errorMsg); } });
解决方案
各位大神给看看,小弟谢谢了
解决方案二:
fileitem中用isformfield判断。getfieldname是参数名getstring
时间: 2025-01-31 05:43:53