Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jquery 进度条在 MVC4 中开发文件上传功能。
我已经完成了文件上传部分。接下来我需要做的是在上传过程中找到上传的数据大小,并使用该值来填充进度条。
上传文件期间如何获取上传的数据大小?
我并不期待完整的文件上传的整个代码块。我需要的是关于如何获取上传数据大小的参考或代码块。我在我的应用程序中使用了 c#。
我找到了以下链接。您需要使用 XMLHttpRequest 对象定期检查进度并更新进度条值。我还没有为此编写代码,但一旦完成就会更新。
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest?redirectlocale=en-US&redirectslug=DOM%2FXMLHttpRequest%2FUsing_XMLHttpRequest
谢谢,