欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

uploadify 3.0 详细使用说明

程序员文章站 2023-11-15 19:22:58
代码如下: //绑定的界面元素 $("#gallery").uploa...

代码如下:

//绑定的界面元素<input id='gallery'type='file'/>
$("#gallery").uploadify({
设置参数,参数如下.
});

设置的属性:

代码如下:


id: jquery(this).attr('id'),//绑定的input的id
langfile: 'https://www.static-xxx.nu/uploader/uploadifylang_en.js',//语言包的路径,能设置所有的提示文字
swf: 'https://www.static-xxx.nu/uploader/uploadify.swf',//[必须设置]swf的路径
uploader: '/uploadify/galleri.php',//[必须设置]上传文件触发的url
auto:false,//文件选择完成后,是否自动上传
buttontext:'välj filer',//上传按钮的文字
height: 30,//上传按钮的高和宽
width: 120,
buttoncursor: 'pointer',//上传鼠标hover后cursor的形状
cancelimage: '/upload/201206/20120618142325932.png',//[必须设置]取消图片的路径
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,可以简单用一个p来显示
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);
}