Stream上传插件(文件夹上传支持)

与世无争的帅哥 提交于 2019-11-29 13:32:02

HTML5文件夹上传,目前支持的浏览器有Chrome21+, Opera15+。是实现文件夹上传的功能时,主要参考两段JS文件,地址:http://protonet.github.io/plupload/src/javascript/plupload.html5.js(是关于拖拽上传文件的巧妙处理方式),

http://html5-demos.appspot.com/static/html5storage/demos/upload_directory/index.html(通过文件选择按钮上传文件夹,需要翻墙)。

主要是拖拽处理的方式复杂一些,贴出http://protonet.github.io/plupload/src/javascript/plupload.html5.js的处理方式:

function walkFileSystem(directory, callback, error) {
	if (!callback.pending) {
		callback.pending = 0;
	}
	if (!callback.files) {
		callback.files = [];
	}
				
	callback.pending++;
				
	var reader = directory.createReader(),
	relativePath = directory.fullPath.replace(/^\//, "").replace(/(.+?)\/?$/, "$1/");
	reader.readEntries(function(entries) {
		callback.pending--;
		plupload.each(entries, function(entry) {
		if (entry.isFile) {
			callback.pending++;
			entry.file(function(File) {
				File.relativePath = relativePath + File.name;
				callback.files.push(File);
				if (--callback.pending === 0) {
					callback(callback.files);
				}
			}, error);
		} else {
			walkFileSystem(entry, callback, error);
		}
	      });
					
             if (callback.pending === 0) {
		callback(callback.files);
	    }
	}, error);
}

在callback的处理非常巧妙!目前Stram上传插件已经实现该功能,测试地址:http://p.twinkling.cn

下载地址:http://git.oschina.net/jiangdx/stream/attach_files

另外,推广一下我的网盘搜索引擎:http://www.impress.pw (搜索种子文件非常好用~)


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!