Flex 分段上传进度
我正在使用多部分 URLLoader
将文件上传到服务器。我能够很好地上传文件。我尝试监听 URLLoader 上的进度事件,但它仅在上传结束时触发。如何通过上传更一致地获取进度事件?
I am uploading a file to a server using a multipart URLLoader
. I am able to upload the file fine. I have tried to listen to the progress event on the URLLoader but it only fires at the very end of the upload. How do I get the progress event more consistently through the upload?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个进度条:
注册一个进度事件处理程序:
并处理它:
如果您的文件很小,接收不到很多事件是正常的。尝试使用更大的文件。
Have a progress-bar:
Register a progress event handler:
And handle it:
If your files are small, it is normal to not receive many events. Try with bigger files.