2009-12-23 60 views
0

我试图计算uploadify队列的总百分比,队列总百分比与jQuery Uploadify

的onProgress内置函数返回如下:

onProgress

percentage 
bytesLoaded 
allBytesLoaded 
speed 

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

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

请帮

回答

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

提取