博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uploadify3.0详细使用说明
阅读量:4345 次
发布时间:2019-06-07

本文共 5083 字,大约阅读时间需要 16 分钟。

使用:

//绑定的界面元素<input id=' gallery 'type='file'/>
$("#gallery").uploadify({
设置参数,参数如下.
});
设置的属性:
id: jQuery(this).attr('id'), //绑定的input的ID
langFile: ' //语言包的路径,能设置所有的提示文字
swf: ' //[必须设置]swf的路径
uploader: '/uploadify/galleri.php', //[必须设置]上传文件触发的url
auto:false, // 文件选择完成后,是否自动上传
buttonText:'Välj Filer', //上传按钮的文字
height: 30, // 上传 按钮的高和宽
width: 120,
buttonCursor: 'pointer', // 上传 鼠标hover后 Cursor 的形状
cancelImage: ' // [必须设置] 取消图片的路径
checkExisting:'/uploader/uploadify-check-existing.php', //检查上传文件是否存,触发的url,返回1/0
debug: true, //debug模式开/关,打开后会显示debug时的信息
fileObjName:'file',
fileSizeLimit : 0,//文件的极限大小,以字节为单位,0为不限制。1MB:1*1024*1024
fileTypeDesc: 'Bild JPG',//允许上传的文件类型的描述,在弹出的文件选择框里会显示
fileTypeExts: '*.jpg', //允许上传的文件类型,限制弹出文件选择框里能选择的文件
method: 'post', //和后台交互的方式:post/get
multi: true, //是否能选择多个文件
queueID: 'fileQueue', //显示上传文件队列的 元素 id,可以简单用一个div 来显示
queueSizeLimit : 999, //队列中允许的最大文件数目
progressData : 'all', // 'percentage''speed' 'all' //队列中显示文件上传进度的方式:all-上传速度+百分比, percentage-百分比, speed-上传速度
removeCompleted : true, //上传成功后的文件,是否在队列中自动删除
removeTimeout: 3,
requeueErrors : true,
postData: {}, //和后台交互时,附加的参数
preventCaching : true,
transparent: true,
successTimeout : 30, //上传时的timeout
uploadLimit:999 //能同时上传的文件数目
 
设置的事件:

onDialogClose : function(swfuploadifyQueue) {//当文件选择对话框关闭时触发

  if( swfuploadifyQueue.filesErrored > 0 ){
  alert( '添加至队列时有'
  +swfuploadifyQueue.filesErrored
  +'个文件发生错误n'
  +'错误信息:'
  +swfuploadifyQueue.errorMsg
  +'n选定的文件数:'
  +swfuploadifyQueue.filesSelected
  +'n成功添加至队列的文件数:'
  +swfuploadifyQueue.filesQueued
  +'n队列中的总文件数量:'
  +swfuploadifyQueue.queueLength);
  }
}

onDialogOpen : function() {//当选择文件对话框打开时触发

  alert( 'Open!');
}

 

onSelect : function(file) {//当每个文件添加至队列后触发

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus);
}

 

onSelectError : function(file,errorCode,errorMsg) {//当文件选定发生错误时触发

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 错误代码: ' + errorCode
  + ' - 错误信息: ' + errorMsg);
}

 

onQueueComplete : function(stats) {//当队列中的所有文件全部完成上传时触发

  alert( '成功上传的文件数: ' + stats.successful_uploads
  + ' - 上传出错的文件数: ' + stats.upload_errors
  + ' - 取消上传的文件数: ' + stats.upload_cancelled
  + ' - 出错的文件数' + stats.queue_errors);
}

 

onUploadComplete : function(file,swfuploadifyQueue) {//队列中的每个文件上传完成时触发一次

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 出错的文件数: ' + swfuploadifyQueue.filesErrored
  + ' - 错误信息: ' + swfuploadifyQueue.errorMsg
  + ' - 要添加至队列的数量: ' + swfuploadifyQueue.filesSelected
  + ' - 添加至对立的数量: ' + swfuploadifyQueue.filesQueued
  + ' - 队列长度: ' + swfuploadifyQueue.queueLength);
}

 

onUploadError : function(file,errorCode,errorMsg,errorString,swfuploadifyQueue) {//上传文件出错是触发(每个出错文件触发一次)

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 错误代码: ' + errorCode
  + ' - 错误描述: ' + errorMsg
  + ' - 简要错误描述: ' + errorString
  + ' - 出错的文件数: ' + swfuploadifyQueue.filesErrored
  + ' - 错误信息: ' + swfuploadifyQueue.errorMsg
  + ' - 要添加至队列的数量: ' + swfuploadifyQueue.filesSelected
  + ' - 添加至对立的数量: ' + swfuploadifyQueue.filesQueued
  + ' - 队列长度: ' + swfuploadifyQueue.queueLength);
}

 

onUploadProgress : function(file,fileBytesLoaded,fileTotalBytes,

queueBytesLoaded,swfuploadifyQueueUploadSize) {//上传进度发生变更时触发
alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 当前文件已上传: ' + fileBytesLoaded
  + ' - 当前文件大小: ' + fileTotalBytes
  + ' - 队列已上传: ' + queueBytesLoaded
  + ' - 队列大小: ' + swfuploadifyQueueUploadSize);
}

 

onUploadStart: function(file) {//上传开始时触发(每个文件触发一次)

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus );
}

 

onUploadSuccess : function(file,data,response) {//上传完成时触发(每个文件触发一次)

  alert( 'id: ' + file.id
  + ' - 索引: ' + file.index
  + ' - 文件名: ' + file.name
  + ' - 文件大小: ' + file.size
  + ' - 类型: ' + file.type
  + ' - 创建日期: ' + file.creationdate
  + ' - 修改日期: ' + file.modificationdate
  + ' - 文件状态: ' + file.filestatus
  + ' - 服务器端消息: ' + data
  + ' - 是否上传成功: ' + response);
}

转载于:https://www.cnblogs.com/luohu/archive/2011/12/16/2290135.html

你可能感兴趣的文章
javascript小技巧:同步服务器时间、同步倒计时
查看>>
我该如何自学软件测试?
查看>>
20145201李子璇 《网络对抗》 Web安全基础实践
查看>>
Alpha 冲刺 (7/10)
查看>>
ORACLE__Linux下Oracle数据库的卸载、删除
查看>>
摆脱控件之新手2
查看>>
Dos命令
查看>>
C#中操作Excel文件
查看>>
SSH答疑解惑系列(二)——java.lang.reflect.InvocationTargetException异常
查看>>
IP地址与,域名,DNS服务器,端口号的联系与概念
查看>>
关于tar解压重命名的问题
查看>>
【C++11】第一篇:新关键字
查看>>
求先序排列
查看>>
Daily Scrum 12.15
查看>>
vue过滤数字为2位小数点,过滤器
查看>>
《C++ Primer Plus(第六版)》(21)(第十一章 使用类 编程题答案2)
查看>>
如何搭建maya plugin develop environment on MAC OS X
查看>>
【Java源码解析】ThreadLocal
查看>>
新闻视频 20-25 首页制作
查看>>
Kendo-UI-Grid-文字剧中显示
查看>>