jquery uploadify操作传参问题
上网上查了一些uploadify的用法,基本上都是上传到当前文件的相对目录下,指定filepath目录,但如果想在前台获取目录,在后台操作,将文件上传到非本地的目录(如服务器)时,要如何将目录传给后台呢?
$("#uploadify").uploadify({ 'uploader': 'uploadify.swf', 'script':'servlet/Upload', 'cancelImg': 'images/cancel.png', 'queueID' : 'fileQueue', 'auto' : false, 'method': 'GET', 'multi': true, 'buttonText': 'BROWSE', 'simUploadLimit' : 1, 'sizeLimit': 19871202, //设置单个文件大小限制,单位为byte 'queueSizeLimit' : 20, onSelect: function(event, queueID, fileObj) { $("#uploadify").uploadifySettings("scriptData", { "path": encodeURI(encodeURI(document.getElementById("recDir").innerHTML)), "type": "test" }); //通过onSelect,将recDir的ID中的值传给后台,后台通过request.getParameter("path")获取。注意:这里为了得到中文的路径,后台需要将path数据decode一次。前台encode两次,后台解一次。 }, onComplete: function (event, queueID, fileObj, response, data) { alert("文件:" + fileObj.name + "上传成功"); }, onError: function(event, queueID, fileObj) { }, onCancel: function(event, queueID, fileObj){ alert("取消了" + fileObj.name); } });
相关推荐
xcguoyu 2014-01-18
中等偏下 2015-04-14
yanyiping 2015-06-03
zfjdoreen 2015-08-24
clayluo 2017-06-05
selt 2017-09-28
梦回forever 2012-03-21
xxglh 2012-01-06
changsongzi 2013-02-20
中等偏下 2017-09-28
玫瑰余香000 2017-06-05
luochaotj 2015-08-26
88403861 2015-08-24
luyou0 2015-06-04
83457317 2015-06-03
中等偏下 2015-05-07
selt 2015-04-14
懒猫猫IT 2015-01-26
苗疆三刀的随手记 2014-11-18