使用Jquery Uploadify的总队列百分比

时间:2009-12-23 15:17:00

标签: javascript jquery uploadify

我正在尝试计算uploadify中队列的总百分比,

onProgress内置函数返回以下内容:

onProgress

percentage 
bytesLoaded 
allBytesLoaded 
speed 

起初我认为'百分比'会返回队列的总百分比。但是后来我发现它只返回正在上传项目的百分比。

所以我的问题是,我可以计算所有文件的总百分比并获得已上传的总数吗?

请帮忙

1 个答案:

答案 0 :(得分:0)

我想通过使用onSelect和/或onSelectOnce您可以计算这两个回调的总百分比

onSelect: fileObj
    size – The size in bytes of the file

onSelectOnce: data
    fileCount – The total number of files in the queue 
    allBytesTotal – The total number of bytes for all files in the queue

摘自Uploadify Documentation