php 的非 flash 多文件上传
研究多文件-拖放-上传脚本。 我们一直在使用 swfupload,直到 flash 10 毁掉了它。 我们正在研究的其他选项是 java 和 google gears。 您会推荐什么?您知道支持这些选项(例如 swfupload)的库/示例/框架吗? 谢谢, 乔什
looking into multi file - drag and drop - upload scripts.
we were using swfupload until flash 10 destroyed it.
the other options we are investigating are java and google gears.
what would you recommend and do you know of libraries/examples/frameworks that support these options like the swfupload.
thanks,
Josh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
参考:http://www.phpeasystep.com/phptu/2.html
Reference: http://www.phpeasystep.com/phptu/2.html
我遇到了同样的问题。 最新版本的 SWFUpload 确实可以工作,它是通过将 swf 透明地覆盖在“选择文件”按钮之上来实现的。
这会起作用。 Flash 10 打破旧流程的原因是(出于安全原因)它强制最终用户通过单击来启动该流程,而不是允许脚本调用此流程。
我们实际上没有使用所有 swfupload javascript,而是最终重写了整个库(并将 javascript 代码减少到原始代码的十分之一左右)。
I came across the same problem. The latest version of SWFUpload does work, and it does so by transparently overlaying the swf on top of your 'select files' button.
This will work. The reason Flash 10 broke the old one, is because (for security reasons) it forces the end-user to initiate the process through a click, instead of allowing scripts to invoke this.
Instead of using all the swfupload javascript, we did actually end up rewriting that entire library (and cutting down the javascript code to about a 10th of the original).
我之前在我的一些 PHP 项目中使用过 JUpload 。 非常适合动态上传多个文件,包括对它们进行块分割以克服任何
upload_max_file
限制。 此外,它还可以进行高度定制,使其完全按照您想要的方式工作。I've used JUpload previously in some PHP projects of mine. Great for uploading multiple files on the fly, including chunk-splitting them to get past any
upload_max_file
restrictions. Also, its pretty customizable to make it work exactly how you want it to.