swfupload 获取计时器剩余时间
是否有可能获得使用 swfupload 上传文件的剩余时间?
is it any possible to get time left for uploading files using swfupload?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有可能获得使用 swfupload 上传文件的剩余时间?
is it any possible to get time left for uploading files using swfupload?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您当然可以估计剩余时间,但据我所知,这不是 SWFUpload 的内置功能。这就是我所做的:
在文件的 uploadStart() 处理程序中,记录上传的开始时间并将其存储在某处。
然后,在同一文件的 uploadProgress() 处理程序中:
效果很好!
我希望这有帮助。
编辑,添加百分比测试> 0
You can most certainly estimate the time remaining, but this isn't a feature built-in to SWFUpload to my knowledge. Here's what I do:
In your uploadStart() handler for your file, record the start time of the upload and store in somewhere.
Then, in your uploadProgress() handler for the same file:
Works well!
I hope this is helpful.
EDIT, added test for percentage > 0
不会,因为由于速度波动,通过正常互联网连接上传任何内容所需的时间永远无法提前得知。另一方面,swfupload 提供了一个进度处理程序来报告上传的百分比,因此您可以使用它来显示进度计数器/栏,或者根据已花费的时间猜测剩余时间,并希望它有点准确。
No, because the time taken to upload anything over a normal Internet connection can never be known in advance due to speed fluctuations. On the other hand swfupload provides a progress handler to report the percentage uploaded so you can either use that to display a progress counter/bar or guesstimate the time remaining based on the time already spent and hope it's somewhat accurate.