当前位置: 代码迷 >> Web前端 >> SWFUpload浅析 -归藏
  详细解决方案

SWFUpload浅析 -归藏

热度:239   发布时间:2012-11-18 10:51:22.0
SWFUpload浅析 --收藏

SWFUpload浅析

链接:http://blog.endlesscode.com/2010/03/26/swfupload%E6%B5%85%E6%9E%90/

一、简介和示例

SWFUpload is a small JavaScript/Flash library to get the best of both worlds. It features the great upload capabilities of Flash and the accessibility and ease of HTML/CSS。

官方站点:http://www.swfupload.org/

简单来说,swfupload这个上传库是可以显示上传进度以及上传速度等上传信息。一般实现这种上传体验有2种方式,一种是异步上传,在服务器端边接收数据边往session写入接收的字节数和进度数据,然后客户端轮询这个记录在session的进度数据并回显到页面。第二种方式就是采用flash来上传,也就是swfupload所采用的方式,在发送过程中将发送的相关状态数据回传到js的函数中处理。

?

?