ExtJS 多文件上传,单文件上传组件

这次一共开发了三款文件上传组件,基于swfupload实现多文件上传,带有上传进度,实时显示上传进度等信息,基于swfupload实现单文件上传组件,继承了ext的twintriggerfield,第三个是基于原生的文件上传,继承twintriggerfield实现文件上传,随表单一起提交,当然每个人的需求不同,大家可以在此基础上再进行修改,说明一下,多文件上传组件参考了dogdisk的文件上传;

多文件上传:
[img]
http://dl.iteye.com/upload/attachment/0070/7869/066ba281-d50f-325a-8b39-5ff5bd76488d.jpg
[/img]

/**
* Swf文件上传
* @class Ext.ux.ISwfUploadPanel
* @extends Ext.Window
*/
Ext.ux.SwfUploadPanel = Ext.extend(Ext.Window,{
uploadUrl : 'uploadFiles.action',//文件上传到服务器上的URL
postParams : {},//随文件上传提交的参数
flashUrl : 'js/ext/resources/swfupload.swf',//flash文件地址
filePostName : 'uploadFile.upload',
fileSize : '5000 MB',//允许上传文件的最大的大小
fileTypes : '*.*',//允许上传文件的类型
fileTypesDescription : '所有文件',//允许上传文件类型说明
allowNumber : 0,//0表示不限制文件个数
btnOKHandler : Ext.emptyFn,//点击确定按钮的动作
btnCancelHandler : Ext.emptyFn,//点击取消按钮的动作

title : '文件上传',
iconCls : '',
layout : 'fit',
width : 550,
height : 350,
progressInfo : {
filesTotal : 0,//总文件数量
filesUploaded : 0,//上传了的文件的数量
bytesTotal : 0,//总文件大小
bytesUploaded : 0,//上传了的文件大小
currentCompleteBytes : 0,//当前已完成文件的大小
lastBytes : 0,
lastElapsed : 1,
lastUpdate : null,
timeElapsed : 1
},
initComponent : function(){

Ext.ux.SwfUploadPanel.superclass.initComponent.call(this);

this.store = new Ext.data.SimpleStore({
fields : ['fileId','fileName','fileType','fileSize','fileState','fileSrc'],
pruneModifiedRecords : true,
listeners : {
scope : this,
'add' : this.doControlBtns,
'remove' : this.doControlBtns
}
});

//数据表顶部工具条
this.topBar = new Ext.Toolbar({
defaults : {
scope : this
}
});

//数据表底部工具条
this.bottomBar = new Ext.Toolbar({
defaultType : 'displayfield',
items : ['时间:',{
ref : 'time',
value : '00:00:00'
},'-','速度:',{
ref : 'speed',
value : '0 KB/s'
},'-','状态:',{
ref : 'state',
value : '0 KB / 0KB'
},'->',{
xtype : 'progress',
ref : 'progressBar',
text : '0 %',
width : 180
}
// {
// xtype : 'panel',
// layout : 'form',
// bodyStyle : 'background:transparent;border:none;',
// cls : 'x-toolbar-ct',
// items : [{
// xtype : 'textfield'
// },{
// xtype : 'combo'
// }]
// }
]
});

this.cm = new Ext.grid.ColumnModel({
defaults : {
sortable : true
},
columns : [new Ext.grid.RowNumberer({width : 22}),{
header : '文件名称',
dataIndex : 'fileName',
width : 150
},{
header : '文件类型',
dataIndex : 'fileType',
width : 60
},{
header : '文件大小',
dataIndex : 'fileSize',
width : 80,
renderer : this.renderFileSize
},{
header : '进度',
dataIndex : '',
renderer : this.renderProgressBar
},{
header : '状态',
dataIndex : 'fileState',
width : 70,
renderer : this.renderFileState
},{
header : '',
dataIndex : '',
width : 30,
renderer : function(value,metadata,record){
switch(record.data.fileState){
case SWFUpload.FILE_STATUS.COMPLETE :
return '
 
';
case SWFUpload.FILE_STATUS.IN_PROGRESS :
return '
 
';
case SWFUpload.FILE_STATUS.CANCELLED :
return '
 
';
case SWFUpload.FILE_STATUS.ERROR :
return '
 
';
}
}
}]
});

//数据表
this.grid = new Ext.grid.GridPanel({
tbar : this.topBar,
bbar : this.bottomBar,
cm : this.cm,
store : this.store,
enableColumnHide : false,
viewConfig : {
forceFit : true,
emptyText : '
请选择要上传的文件
'
},
listeners : {
scope : this,
'render' : this.initSwfSettings
}
});

this.add(this.grid);
if(Ext.isEmpty(this.buttons)){
this.addButton({text : '确定',scope : this},this.doConfirmUploadPanel);
this.addButton({text : '取消',scope : this},this.doCloseUploadPanel);
}

this.on('show',this.initProgressInfo,this);
},

//点击窗体上的取消按钮
doCloseUploadPanel : function(){
this[this.closeAction]();
this.btnCancelHandler.call(this);
},

//点击窗体上的确定按钮
doConfirmUploadPanel : function(){
this[this.closeAction]();
this.btnOKHandler.call(this);
},

//重写window的doClose方法
doClose : function(){
if(!this.isDestroyed){
if(this.fireEvent('beforedestroy', this) !== false){
this.destroying = true;
if(this.rendered){
this.hide();
this.clearAnchor();
this.grid.getView().destroy();
Ext.destroy(this.focusEl);
Ext.destroy(this.resizer);
Ext.destroy(this.dd);
Ext.destroy(this.proxy);
Ext.destroy(this.mask);

}

if(this.ownerCt && this.ownerCt.remove){
this.ownerCt.remove(this, false);
}
if(this.rendered){
this.el.remove();
if(this.actionMode == 'container' || this.removeMode == 'container'){
this.container.remove();
}
}
// Stop any buffered tasks
if(this.focusTask && this.focusTask.cancel){
this.focusTask.cancel();
}
this.onDestroy();
Ext.ComponentMgr.unregister(this);
this.fireEvent('destroy', this);
this.purgeListeners();
this.destroying = false;
this.isDestroyed = true;
}
}
return;

Ext.get(this.id).remove();return;
Ext.getCmp(this.id).close();
},

//第一步:初始化flash上传组件设置
initSwfSettings : function(){
this.topBar.add({
text : '添加',
ref : 'addFile',
iconCls : 'oa-add'
},'-',{
text : '删除',
ref : 'removeFile',
iconCls : 'oa-delete',
handler : this.doRemove
},'-',{
text : '上传',
ref : 'uploadFile',
state : 'upload',
iconCls : 'oa-img-upload',
disabled : true,
handler : this.doUpload
});
this.topBar.doLayout();
var em = this.grid.getTopToolbar().items.first().el.child('em');;
var placeHolderId = Ext.id();
em.setStyle({
position: 'relative',
display: 'block'
});
em.createChild({
tag: 'div',
id: placeHolderId
});
this.swfupload = new SWFUpload({
upload_url : this.uploadUrl,
post_params : Ext.isEmpty(this.postParams) ? {}:this.postParams,
flash_url : this.flashUrl,
file_post_name : this.filePostName,
file_size_limit : this.fileSize,
file_types : this.fileTypes,
file_types_description : this.fileTypesDescription,
file_upload_limit : this.allowNumber,//允许同时上传文件的数量,默认值为0,即不限制。当文件队列中的文件数,正在上传的文件以及已经上传成功的文件数只和超过了该值后,便不在允许添加文件
file_queue_limit : this.allowNumber,//允许队列存在的文件数量,默认值为0,即不限制。当文件队列中的文件数超过该值便不再允许添加文件
// use_query_string:true,
debug : false,
button_width : '48',
button_height : '20',
button_placeholder_id : placeHolderId,
button_window_mode : SWFUpload.WINDOW_MODE.TRANSPARENT,
button_cursor : SWFUpload.CURSOR.HAND,
button_disabled : false,//按钮是否禁用,默认值为false
//button_action : //设置Flash Button点击以后的动作,默认值为SWFUpload.BUTTON_ACTION.SELECT_FILES(多文件上传)
//requeue_on_error, //是否将上传失败的的文件重新添加到上传队列的顶端,默认值为true。当文件上传失败或者停止上传触发uploadError事件,是否将上传失败的的文件重新添加到上传队列的顶端,当然调用cancelUpload方法触发uploadError事件,不会将文件重新添加到上传队列中,而是会丢弃
custom_settings : {
scope_handler : this
},
swfupload_loaded_handler : this.onFlashCompleteInit,
file_dialog_start_handler : this.onBeforeFileWindowOpen,

file_queued_handler : this.onAddFileToQueue,
file_queue_error_handler : this.onAddFileToQueueError,
file_dialog_complete_handler : this.onAddFileToQueueComplete,

upload_start_handler : this.doUpload,
upload_progress_handler : this.doUploadProgress,
upload_error_handler : this.doUploadError,
upload_success_handler : this.doUploadSuccess,
upload_complete_handler : this.doUploadComplete
});
this.swfupload.uploadStopped = false;
Ext.get(this.swfupload.movieName).setStyle({
position: 'absolute',
top: '-2px',
left: '-2px'
});
},

//初始化进度信息
initProgressInfo : function(){
this.progressInfo = {
filesTotal : 0,//总文件数量
filesUploaded : 0,//上传了的文件的数量
bytesTotal : 0,//总文件大小
bytesUploaded : 0,//上传了的文件大小
currentCompleteBytes : 0,//当前已完成文件的大小
lastBytes : 0,
lastElapsed : 1,
lastUpdate : null,
timeElapsed : 1
}
},

/**flash文件初始化完成之后调用
*/
onFlashCompleteInit : Ext.emptyFn,

/**打开浏览窗口之前调用
*/
onBeforeFileWindowOpen : Ext.emptyFn,

//第二步:添加文件到数据表中
onAddFileToQueue : function(file){
var thiz = this.customSettings.scope_handler;
thiz.grid.store.add(new thiz.grid.store.recordType({
fileId : file.id,
fileName : file.name,
fileSize : file.size,
fileType : file.type,
fileState : file.filestatus
}));

thiz.progressInfo.filesTotal += 1;//文件总数
thiz.progressInfo.bytesTotal += file.size;//文件总大小

thiz.doUpdateProgressInfo();//添加了文件后根据进度信息进新一次进度显示
},

//添加一个文件到队列中出现错误
onAddFileToQueueError : function(file, errorCode, message){
var thiz = this.customSettings.scope_handler;
var errorMsg = '';
switch(errorCode){
case SWFUpload.QUEUE_ERROR.QUEUE_LIMIT_EXCEEDED :
errorMsg = String.format('尝试添加太多的文件进入队列,只可以添加{0}个文件',message);break;
case SWFUpload.QUEUE_ERROR.FILE_EXCEEDS_SIZE_LIMIT :
errorMsg = String.format('{0}大小超出限制,只可以添加不超过{1}的文件',file.name,thiz.fileSize);break;
case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE :
errorMsg = String.format('{0}是0字节文件,不能上传0字节的文件',file.name);break;
case SWFUpload.QUEUE_ERROR.INVALID_FILETYPE :
errorMsg = String.format('{0}是无效文件类型',file.name);break;
default :
errorMsg = '添加文件时出现未知错误';
}

Ext.Msg.show({
title : '提示',
msg : errorMsg,
buttons: Ext.Msg.OK,
fn: Ext.emptyFn,
icon: Ext.MessageBox.INFO
});
},

//添加文件到数据表动作完成
onAddFileToQueueComplete : function(selectedFilesCount, queuedFilesCount){
//alert("selectedFilesCount:" + selectedFilesCount + " queuedFilesCount:" + queuedFilesCount );
},

//第三步:点击上传按钮,开始上传
doUpload : function(){
if (this.swfupload) {
var btn = this.topBar.uploadFile;//取得按钮对象
if(btn && btn.state == 'upload'){
this.swfupload.uploadStopped = false;
var post_params = this.swfupload.settings.post_params;
this.swfupload.setPostParams(post_params);
this.swfupload.startUpload();

btn.setText('停止');
btn.state = 'pause'
btn.setIconClass('oa-pause');
}else{
this.swfupload.uploadStopped = true;
this.swfupload.stopUpload();
btn.setText('上传');
btn.state = 'upload',
btn.setIconClass('oa-img-upload');
}
this.doControlBtns(false);
}
},

//从数据表中移除文件
doRemove : function(){
var records = this.grid.getSelected(true);//取得选定的所有的记录
if(records.length<1){
Ext.uxMsg.tip(Ext.uxMsg.INFO,'请选择要移除的文件');return;
}
Ext.each(records,function(record){
if(record.data.fileState != SWFUpload.FILE_STATUS.IN_PROGRESS /*&& record.data.fileState != SWFUpload.FILE_STATUS.QUEUED.COMPLETE*/){
this.swfupload.cancelUpload(record.data.fileId);//此句一定要加上,它会触会doUploadError事件
if(record.data.fileState != SWFUpload.FILE_STATUS.CANCELLED){


this.progressInfo.filesTotal -= 1;
this.progressInfo.bytesTotal -= record.data.fileSize;
switch(record.data.fileState){
case SWFUpload.FILE_STATUS.CANCELLED:
this.progressInfo.bytesUploaded -= this.progressInfo.currentCompleteBytes;break;
case SWFUpload.FILE_STATUS.ERROR :
case SWFUpload.FILE_STATUS.COMPLETE:
this.progressInfo.bytesUploaded -= record.data.fileSize;break;
}

//record.set('fileState',SWFUpload.FILE_STATUS.CANCELLED);
//record.commit();
this.store.remove(record);
this.doUpdateProgressInfo();
}
}
},this);
this.grid.getView().refresh();
},

/**上传过程中进度
* @param {} file 文件对象
* @param {} completeBytes 已经上传的字节数(当前文件已上传了的大小)
* @param {} bytesTotal 总共要上传的字节数(当前文件总大小)
*/
doUploadProgress : function(file, completeBytes, bytesTotal){
//处理数据表里列进度条
var thiz = this.customSettings.scope_handler;
// try{
var percent = Math.ceil((completeBytes / bytesTotal) * 100);
Ext.getDom('progressBar_' + file.id).style.width = percent + "%";
Ext.getDom('progressText_' + file.id).innerHTML = percent + " %";
var record = thiz.store.getById(Ext.getDom('fileId_' + file.id).parentNode.id);
record.set('fileState',file.filestatus);

//生成基本进度相关信息
var bytes_added = completeBytes - thiz.progressInfo.currentCompleteBytes;
thiz.progressInfo.bytesUploaded += Math.abs(bytes_added < 0 ? 0 : bytes_added);
thiz.progressInfo.currentCompleteBytes = completeBytes;

if (thiz.progressInfo.lastUpdate) {
thiz.progressInfo.lastElapsed = thiz.progressInfo.lastUpdate.getElapsed();
thiz.progressInfo.timeElapsed += thiz.progressInfo.lastElapsed;
}
thiz.progressInfo.lastBytes = bytes_added;
thiz.progressInfo.lastUpdate = new Date();

thiz.doUpdateProgressInfo();//更新底部工具条上进度信息

// }catch(e){
//
// }
},

//更新上传进度信息
doUpdateProgressInfo : function(){
var pInfo = {};
pInfo.filesUploaded = String.leftPad(this.progressInfo.filesUploaded, 3, ' ');
pInfo.filesTotal = this.progressInfo.filesTotal;

pInfo.bytesUploaded = String.leftPad(Ext.util.Format.fileSize(this.progressInfo.bytesUploaded), 6, ' ');
pInfo.bytesTotal = Ext.util.Format.fileSize(this.progressInfo.bytesTotal);

pInfo.timeElapsed = this.formatTime(this.progressInfo.timeElapsed);
pInfo.speedAverage = Ext.util.Format.fileSize(Math.ceil(1000 * this.progressInfo.bytesUploaded / this.progressInfo.timeElapsed)) + '/s';
pInfo.timeLeft = this.formatTime((this.progressInfo.bytesUploaded === 0) ? 0 : this.progressInfo.timeElapsed * (this.progressInfo.bytesTotal - this.progressInfo.bytesUploaded) / this.progressInfo.bytesUploaded);
var caleSpeed = 1000 * this.progressInfo.lastBytes / this.progressInfo.lastElapsed;
pInfo.speedLast = Ext.util.Format.fileSize(caleSpeed < 0 ? 0:caleSpeed) + '/s';

//时间信息
this.bottomBar.time.setValue(pInfo.timeLeft);
//速度信息
this.bottomBar.speed.setValue(pInfo.speedAverage);
//状态信息
this.bottomBar.state.setValue(pInfo.bytesUploaded + ' / ' + pInfo.bytesTotal);
//总进度条信息
var p = (this.progressInfo.bytesUploaded / this.progressInfo.bytesTotal) || 0;
this.bottomBar.progressBar.updateProgress(p, p>=1?'完成 100 %':String.format('{0} %',Math.ceil(p * 100)));
},

//当一个文件上传失败后调用此方法,cancelUpload方法调用后也会触发此事件
doUploadError : function(file, errorCode, message){
var thiz = this.customSettings.scope_handler;
var tipMsg = null;
try{
var record = thiz.store.getById(Ext.getDom('fileId_' + file.id).parentNode.id);
record.set('fileState',file.filestatus);
switch(errorCode){
case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED :
tipMsg = String.format('
{1}上传失败,上传被终止// alert(thiz.progressInfo.bytesUploaded +'\t' + thiz.progressInfo.lastBytes + '\t' + thiz.progressInfo.currentCompleteBytes);
thiz.progressInfo.bytesUploaded -= thiz.progressInfo.currentCompleteBytes;
break;
case SWFUpload.UPLOAD_ERROR.MISSING_UPLOAD_URL :
tipMsg = String.format('
{1}上传失败,丢失URL',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.IO_ERROR :
tipMsg = String.format('
{1}上传失败,IO异常',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.SECURITY_ERROR :
tipMsg = String.format('
{1}上传失败,安全错误',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED :
tipMsg = String.format('
{1}上传失败,大小限制异常',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.UPLOAD_FAILED :
tipMsg = String.format('
{1}上传失败,上传异常',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.SPECIFIED_FILE_ID_NOT_FOUND :
tipMsg = String.format('
{1}上传失败,文件编号丢失',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.FILE_VALIDATION_FAILED :
tipMsg = String.format('
{1}上传失败,验证失败',record.data.fileId,record.data.fileName);break;
case SWFUpload.UPLOAD_ERROR.FILE_CANCELLED:
tipMsg = String.format('
{1}上传失败,文件取消',record.data.fileId,record.data.fileName);
break;
}
}catch(e){

}finally{
thiz.doUpdateProgressInfo();
}

if(!Ext.isEmpty(tipMsg)){
Ext.Msg.show({
title : '提示',
msg : tipMsg,
width : 320,
buttons: Ext.Msg.OK,
fn: Ext.emptyFn,
icon: Ext.MessageBox.INFO
});
}
// alert('onUploadError,errorCode:' + errorCode + ",message:" + message + ",file.filestatus:" + file.filestatus);
},

/**当一个文件上传成功后调用些方法
* @param {} file 文件对象
* @param {} responseText 服务端响应的信息
* @param {} isResponsed 是否有服务端响应信息
*/
doUploadSuccess : function(file, responseText,isResponsed){
var thiz = this.customSettings.scope_handler;
try{
var record = thiz.store.getById(Ext.getDom('fileId_' + file.id).parentNode.id);
if(Ext.util.JSON.decode(responseText).success){
thiz.progressInfo.filesUploaded += 1;
thiz.doUpdateProgressInfo();
record.set('fileState',file.filestatus);
record.commit();
}
}catch(e){
record.set('fileState',SWFUpload.FILE_STATUS.ERROR);
record.commit();
}
thiz.doUpdateProgressInfo();
},

//当一个文件上传完成后如果队列中还有待上传的文件再次调用上传方法
doUploadComplete : function(file){
if (this.getStats().files_queued > 0 && this.uploadStopped == false) {
this.startUpload();
}else if(this.getStats().files_queued == 0){
var thiz = this.customSettings.scope_handler;
var btn = thiz.topBar.uploadFile;
btn.setText('上传');
btn.state = 'upload',
btn.setIconClass('oa-img-upload');
thiz.doControlBtns(false);
}
},

//数据表里进度条列渲染函数
renderProgressBar : function(v, cellmeta, record){
var returnValue = '';
switch(record.data.fileState){
case SWFUpload.FILE_STATUS.COMPLETE:
if(Ext.isIE){
returnValue =
'
' +
'
' +
'
' + '100 %'
'
' +
'
' +
'
';
}else{
returnValue =
'
' +
'
' +
'
' +
'
' +
'
100 %
'
'
' +
'
';
}
break;
default :
returnValue =
'
' +
'
' +
'
' +
'
' +
'
0 %
'
'
' +
'
';
break;
}
return returnValue;
},

//数据表文件大小渲染函数
renderFileSize : function(v,meta,record){
return '
' + Ext.util.Format.fileSize(v) + '
';
},

//数据表里文件状态渲染函数
renderFileState : function(v,meta,record){
var returnValue = '';
switch(v){
case SWFUpload.FILE_STATUS.QUEUED:
returnValue = String.format('
等待上传',record.id,record.data.fileId);break;
case SWFUpload.FILE_STATUS.CANCELLED:
returnValue = String.format('
取消上传',record.id,record.data.fileId);break;
case SWFUpload.FILE_STATUS.COMPLETE:
returnValue = String.format('
成功上传',record.id,record.data.fileId);break;
case SWFUpload.FILE_STATUS.IN_PROGRESS :
returnValue = String.format('
正在上传',record.id,record.data.fileId);break;
default :
returnValue = String.format('
上传失败',record.id,record.data.fileId);break;;
}
return returnValue;

},

//控制工具条上的按钮状态
doControlBtns : function(isAddBtn){
if(Ext.isEmpty(isAddBtn) || isAddBtn){
var count = this.store.getCount();
this.topBar.uploadFile.setDisabled(count < 1);
}else{
var b = this.topBar.uploadFile.state == 'pause';
this.topBar.addFile.setDisabled(b);
this.topBar.removeFile.setDisabled(b);
document.getElementById(this.swfupload.movieName).style.top = b?'30px':'-2px';
}
},

//格式化时间
formatTime : function(milliseconds) {
var seconds = parseInt(milliseconds / 1000, 10);
var h = 0,m = 0,s = 0,result = [];
if (3599 < seconds) {
h = parseInt(seconds / 3600, 10);
seconds -= h * 3600;
}
if (59 < seconds) {
m = parseInt(seconds / 60, 10);
seconds -= m * 60;
}
result.push(String.leftPad(h, 2, '0'),':',String.leftPad(m, 2, '0'),':',String.leftPad(seconds, 2, '0'));
return result.join('');
}
});

使用方法:
var win = new Ext.ux.SwfUploadPanel({
btnOKHandler : function(){
alert('1111111111');
},
btnCancelHandler : function(){
alert('2222222222');
}
});
win.show();
可以参考组件中相关配置项,只要在实例组件时传入对应的参数就可以把组件中默认的给覆盖掉


单文件上传1:

/**
* Swf文件上传组件
* @class Ext.ux.SwfUploadField
* @extends Ext.ux.ITrigger
*/
Ext.ux.SwfUploadField = Ext.extend(Ext.ux.ITrigger,{

uploadUrl : 'uploadFiles.action',//文件上传到服务器上的URL
postParams : {},//随文件上传提交的参数
flashUrl : 'js/ext/resources/swfupload.swf',//flash文件地址
filePostName : 'uploadFile.upload',
fileSize : '5000 MB',//允许上传文件的最大的大小
fileTypes : '*.*',//允许上传文件的类型
fileTypesDescription : '所有文件',//允许上传文件类型说明
enableClearBtn : true,//是否允许带有清除按钮,当选择了文件后

//private
trigger2Class : 'x-form-file-trigger',
editable : false,
flashHandlerId : Ext.id(),
initComponent : function(){

Ext.ux.SwfUploadField.superclass.initComponent.call(this);

},

//重写afterRender方法
afterRender : function(){
Ext.ux.SwfUploadField.superclass.afterRender.call(this);

this.trigger.createChild({
tag: 'div',
id: this.flashHandlerId
});

this.initFlashConfig();//初始化flash设置
},

//重写onResize方法
onResize : function(w,h){
Ext.ux.SwfUploadField.superclass.onResize.call(this,w,h);
this.width = w;
if(this.swfupload){
var leftOri = this.el.getComputedWidth();
var leftPos = this.enableClearBtn && this.clearBtnVisiable?(leftOri + 18):leftOri;
Ext.get(this.swfupload.movieName).setStyle({
position: 'absolute',
top: '1px',
left: leftPos + 'px'
});
}

},

onDisable : function(){
this.getActionEl().addClass(this.disabledClass);
this.el.dom.disabled = true;
this.setHideTrigger(true);
this.el.setWidth(this.width);
},

onEnable : function(){
this.getActionEl().removeClass(this.disabledClass);
this.el.dom.disabled = false;
this.setHideTrigger(false);
this.el.setWidth(this.width - 18);
},

initFlashConfig : function(){
this.swfupload = new SWFUpload({
upload_url : this.uploadUrl,
post_params : Ext.isEmpty(this.postParams) ? {}:this.postParams,
flash_url : this.flashUrl,
file_post_name : this.filePostName,
file_size_limit : this.fileSize,
file_types : this.fileTypes,
file_types_description : this.fileTypesDescription,

use_query_string:true,
debug : false,
button_width : '18',
button_height : '20',
button_placeholder_id : this.flashHandlerId,
button_window_mode : SWFUpload.WINDOW_MODE.TRANSPARENT,
button_cursor : SWFUpload.CURSOR.HAND,
button_disabled : false,//按钮是否禁用,默认值为false
button_action : SWFUpload.BUTTON_ACTION.SELECT_FILE, //设置Flash Button点击以后的动作,默认值为SWFUpload.BUTTON_ACTION.SELECT_FILES(多文件上传)
//requeue_on_error, //是否将上传失败的的文件重新添加到上传队列的顶端,默认值为true。当文件上传失败或者停止上传触发uploadError事件,是否将上传失败的的文件重新添加到上传队列的顶端,当然调用cancelUpload方法触发uploadError事件,不会将文件重新添加到上传队列中,而是会丢弃
custom_settings : {
scope_handler : this
},
file_queued_handler : this.onAddFileToQueue,
file_queue_error_handler : this.onAddFileToQueueError,
file_dialog_complete_handler : this.onAddFileToQueueComplete,

upload_start_handler : this.doUpload,
upload_progress_handler : this.doUploadProgress,
upload_error_handler : this.doUploadError,
upload_success_handler : this.doUploadSuccess,
upload_complete_handler : this.doUploadComplete
});
this.swfupload.uploadStopped = false;
Ext.get(this.swfupload.movieName).setStyle({
position: 'absolute',
top: '1px',
left: (this.width - 20) + 'px'
});
},

onAddFileToQueue : function(file){
var thiz = this.customSettings.scope_handler;
thiz.setValue(file.name);
},

//添加一个文件到队列中出现错误
onAddFileToQueueError : function(file, errorCode, message){
var thiz = this.customSettings.scope_handler;
var errorMsg = '';
switch(errorCode){
case SWFUpload.QUEUE_ERROR.ZERO_BYTE_FILE :
errorMsg = String.format('{0}是0字节文件,不能上传0字节的文件',file.name);break;
case SWFUpload.QUEUE_ERROR.INVALID_FILETYPE :
errorMsg = String.format('{0}是无效文件类型',file.name);break;
default :
errorMsg = '选取文件时出现未知错误';
}

thiz.markInvalid(errorMsg);
},

//添加文件到数据表动作完成
onAddFileToQueueComplete : function(selectedFilesCount, queuedFilesCount){
// alert("selectedFilesCount:" + selectedFilesCount + " queuedFilesCount:" + queuedFilesCount );
var thiz = this.customSettings.scope_handler;
thiz.doUpload();
},

doUpload : function(){
if (this.swfupload) {
this.swfupload.uploadStopped = false;
var post_params = this.swfupload.settings.post_params;
this.swfupload.setPostParams(post_params);
this.swfupload.startUpload();
}
},

doUploadProgress : function(file, completeBytes, bytesTotal){
var thiz = this.customSettings.scope_handler;
var percent = Math.ceil((completeBytes / bytesTotal) * 100);
// Ext.getDom(thiz.progressElemId).innerHTML = percent + " %";
},

//当一个文件上传失败后调用此方法,cancelUpload方法调用后也会触发此事件
doUploadError : function(file, errorCode, message){
var thiz = this.customSettings.scope_handler;
var tipMsg = null;
try{
switch(errorCode){
case SWFUpload.UPLOAD_ERROR.UPLOAD_STOPPED :
tipMsg = '上传失败,上传被终止';break;
case SWFUpload.UPLOAD_ERROR.MISSING_UPLOAD_URL :
tipMsg = '上传失败,丢失URL';break;
case SWFUpload.UPLOAD_ERROR.IO_ERROR :
tipMsg = '上传失败,IO异常';break;
case SWFUpload.UPLOAD_ERROR.SECURITY_ERROR :
tipMsg = '上传失败,安全错误';break;
case SWFUpload.UPLOAD_ERROR.UPLOAD_LIMIT_EXCEEDED :
tipMsg = '上传失败,大小限制异常';break;
case SWFUpload.UPLOAD_ERROR.UPLOAD_FAILED :
tipMsg = '上传失败,上传异常';break;
case SWFUpload.UPLOAD_ERROR.SPECIFIED_FILE_ID_NOT_FOUND :
tipMsg = '上传失败,文件编号丢失';break;
case SWFUpload.UPLOAD_ERROR.FILE_VALIDATION_FAILED :
tipMsg = '上传失败,验证失败';break;
case SWFUpload.UPLOAD_ERROR.FILE_CANCELLED:
tipMsg = '上传失败,文件取消';break;
}
}catch(e){

}

if(!Ext.isEmpty(tipMsg)){
Ext.Msg.show({
title : '提示',
msg : tipMsg,
width : 320,
buttons: Ext.Msg.OK,
fn: Ext.emptyFn,
icon: Ext.MessageBox.INFO
});
}
// alert('onUploadError,errorCode:' + errorCode + ",message:" + message + ",file.filestatus:" + file.filestatus);
},

/**当一个文件上传成功后调用些方法
* @param {} file 文件对象
* @param {} responseText 服务端响应的信息
* @param {} isResponsed 是否有服务端响应信息
*/
doUploadSuccess : function(file, responseText,isResponsed){
var thiz = this.customSettings.scope_handler;
try{
if(Ext.util.JSON.decode(responseText).success){
//处理上传完成后的动作
}
}catch(e){

}
},

//文件上传动作完成
doUploadComplete : function(file){
var thiz = this.customSettings.scope_handler;
if(thiz.enableClearBtn){
thiz.triggers[0].show();
thiz.clearBtnVisiable = true;
}

},

onTrigger1Click : function(){
this.setValue(null);
if(this.enableClearBtn){
this.triggers[0].hide();
this.clearBtnVisiable = false;
}
}

});
Ext.reg('swffileuploadfield',Ext.ux.SwfUploadField);

//此组件的使用与使用Ext其它组件一样,可以指定xtype也可以下拉实例化


文件上传组件3:

/**
* @class Ext.form.FileUploadField
* @extends Ext.form.TwinTriggerField
*/
Ext.form.FileUploadField = Ext.extend(Ext.form.TwinTriggerField, {
getTrigger : Ext.form.TwinTriggerField.prototype.getTrigger,
initTrigger : Ext.form.TwinTriggerField.prototype.initTrigger,
hideTrigger1 : true,
trigger1Class : 'x-form-clear-trigger',
trigger2Class : 'x-form-file-trigger',
validationEvent : false,
validateOnBlur : false,
editable : false,
enableClearBtn : true,//是否启用清除选择文件按钮

initComponent : function() {
Ext.form.FileUploadField.superclass.initComponent.call(this);

// add the CSS here so we don't have to include it
if (Ext.util.CSS.getRule('.x-form-file') == null) {
var styleBody = '.x-form-file-cabinet {position: relative;}'
+ '.x-form-file-wrapper {position: absolute; display: block; height: 22px; width: 18px; overflow: hidden;}'
+ '.x-form-file {cursor: pointer; position: absolute; height: 22px; right: 0; opacity: 0; -moz-opacity: 0; filter: alpha(opacity=0);}';

var styleSheet = Ext.util.CSS.createStyleSheet('/* Ext.form.FileUploadField stylesheet */\n' + styleBody, 'FileUploadField');
Ext.util.CSS.refreshCache();
}

this.addEvents(
/**
* @event fileselected Fires when the underlying file input
* field's value has changed from the user selecting a
* new file from the system file selection dialog.
* @param {Ext.form.FileUploadField} this
* @param {String} value The file value returned by the underlying file input field
*/
'fileselected');

this.triggerConfig = {
tag : 'span',
cls : 'x-form-twin-triggers',
cn : [{
tag : 'img',
src : Ext.BLANK_IMAGE_URL,
cls : 'x-form-trigger ' + this.trigger1Class
}, {
tag : 'img',
src : Ext.BLANK_IMAGE_URL,
cls : 'x-form-trigger ' + this.trigger2Class
}, {
tag : 'span',
cls : 'x-form-file-cabinet',
cn : [{
tag : 'div',
id : this.getFileWrapperId(),
cls : 'x-form-file-wrapper'
}]
}]
};
},

onRender : function(ct, position) {
Ext.form.FileUploadField.superclass.onRender.call(this, ct,position);
this.wrapper = Ext.get(this.getFileWrapperId());

this.createFileInput();
this.bindListeners();

this.getTrigger(1).on({
mousemove : {
fn : function() {
this.wrapper.setXY(this.getTrigger(1).getXY())
},
scope : this
}
});
},

bindListeners : function() {
this.fileInput.on({
scope : this,
mouseenter : function() {
this.getTrigger(1).addClass('x-form-trigger-over')
},
mouseleave : function() {
this.getTrigger(1).removeClass('x-form-trigger-over')
},
mousedown : function() {
this.getTrigger(1).addClass('x-form-trigger-click')
},
mouseup : function() {
this.getTrigger(1).removeClass('x-form-trigger-click')
},
change : {
fn : this.handleFile,
scope : this
}
});
},

reset : function() {
Ext.form.FileUploadField.superclass.reset.call(this);
this.fileInput.remove();
this.createFileInput();
this.bindListeners();
if(this.enableClearBtn){
this.getTrigger(0).hide();
}
},

setValue : Ext.form.TwinTriggerField.prototype.setValue.createSequence(function(v) {
this.getEl().dom.qtip = v;
this.getEl().dom.qwidth = Ext.util.TextMetrics.measure(this.getEl(), v).width + 12;

if (Ext.QuickTips) {
Ext.QuickTips.enable();
}
}),

handleFile : function() {
// if this is unix style structure replace / with \
var filePath = this.fileInput.dom.value.replace(/\//g, '\\');

// extract the filename from the value
var indexPos = filePath.lastIndexOf('\\');
var fileName = filePath.substring(indexPos + 1);

this.setValue(fileName);
this.fireEvent('fileselected', this, fileName);
if(this.enableClearBtn){
this.getTrigger(0).show();
}
},

onDestroy : function() {
Ext.form.FileUploadField.superclass.onDestroy.call(this);
Ext.destroy(this.fileInput, this.wrapper);
},

onDisable : function() {
Ext.form.FileUploadField.superclass.onDisable.call(this);
this.doDisable(true);
},

onEnable : function() {
Ext.form.FileUploadField.superclass.onEnable.call(this);
this.doDisable(false);
},

doDisable : function(disabled) {
this.fileInput.dom.disabled = disabled;
},

preFocus : Ext.emptyFn,

onTrigger1Click : function() {
this.clearValue();
if(this.enableClearBtn){
this.getTrigger(0).hide();
}
this.fileInput.remove();
this.createFileInput();
this.bindListeners();
},

createFileInput : function() {
this.fileInput = this.wrapper.createChild({
id : this.getFileInputId(),
name : this.name || this.getId(),
cls : 'x-form-file',
tag : 'input',
type : 'file',
width : 1
});
},

clearValue : function() {
this.setRawValue('');
this.setValue('');
this.value = '';
},

getFileInputId : function() {
return this.id + '-file';
},

getFileWrapperId : function() {
return this.id + '-wrapper';
}
});
Ext.reg('fileuploadfield', Ext.form.FileUploadField);
//使用方法同上


附件中有组件使用效果图

你可能感兴趣的:(ExtJS)