uploadify上传文件 Firefox HTTP IO 302 错误

时间:2022-10-22 19:37:09

困扰已久,今天终于解决了。


直接上代码吧,

function upload(){  

$("#uploadify").uploadify({
'auto' : false, //选完文件后是否自动上传
'swf' : '<%=request.getContextPath()%>/scripts/jquery/uploadify/uploadify.swf', //引入uploadify.swf
'uploader' : '<%=request.getContextPath()%>' + '/cls/clearsettle/upload.do;jsessionid=${pageContext.session.id}',//请求路径

});

}
 


在请求路径的后面加上:

;jsessionid=${pageContext.session.id}    前面是分号,清下浏览器缓存,关闭浏览器,重新打开,再重新请求就可以了。


效果图:uploadify上传文件 Firefox HTTP IO 302 错误