ASP .NET MVC 3 项目需要 jquery 插件来实现带进度条的 ajax 上传
我在谷歌搜索,但没有找到适合我的东西。
所以我想要一个通过ajax上传文件的插件,但有一些问题
1.它必须有进度条来显示上传进度! 2.我想将信息从文本框发送到控制器(用于重命名文件) 3.我的操作应该仅在上传过程完成后才开始工作...
您可以建议哪些插件? 另外,如果您也在这里编写 ASP .NET MVC 3 的示例,将会更有帮助...
感谢您的帮助!
I search in google, but I don't find anything for me.
So I want plug-in for uploading files via ajax and there are some problems
1.It must have progress bar to show upload progress!
2.I want to send info from textboxes to controller(for renaming file)
3.My action should start work only when uploading process is complete...
What plug-ins can you suggest?
Also, it will be more helpful, if you write here example for ASP .NET MVC 3 too...
Thanks for help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 jQuery 文件上传来处理 MVC3 中的所有内容。唯一需要注意的是,因为它是纯 HTML/JS 解决方案,所以 IE 中没有进度条(因为 IE 不提供任何处理它的方法)。
对于上传进度条的 IE 兼容解决方案,您现在别无选择,只能使用 Flash。
I use jQuery File Upload for all that stuff in MVC3. The only caveat is that because it's a pure HTML/JS solution you don't have progress bars in IE (because IE doesn't provide any way to handle it).
For an IE-compatible solution for an upload progress bar you have no choice but to use Flash right now.
plupload 运行良好,并且内置了很多兼容性。
plupload works well and has a lot of compatibility built in.