<span style="white-space:pre"> </span>('#my_upload').uploadify( {
'buttonText' : "<input type=\"button\" class=\"btn btn-primary col-sm-3 col-md-2\" value=\"上传文件\" />",
'swf' : '${path}/style/uploadify/uploadify.swf',
'method' : 'POST',
'width' : '16.666666666666664%',
'height': '34px',
'uploader' : 'http://upload.qiniu.com/',
'formData' : {'token' : '<token>'},
'queueSizeLimit':1,
'fileObjName' : 'file',
'fileSizeLimit':'2MB',
'fileTypeDesc':'图片文件',
'fileTypeExts':'*.jpg;*.gif;*.png;*.bmp;*.doc;*.docx;*.xls;*.xlsx;*.pdf;',
'onUploadStart':function(file){
$("#fileUpload").uploadify('disable', true);
//$(".uploadify-queue-item .cancel").hide();
},
'onUploadError':function(event,queueId,fileObj,errorObj){
console.log(errorObj);
showTip("上传失败!请稍后再试!");
},
'onUploadSuccess' : function(file, data, response) {
if (response == true) {
//var img_url = "<%=PropKit.get("MEDIA_THUMBPIC")%>?key="+t.key;
var t = jQuery.parseJSON(data);
var key = t.key;
add(key,file.name,file.type);
}
}
});
javaweb前端uploadify结合七牛云存储
最新推荐文章于 2017-12-20 23:38:25 发布