用于附加功能的最佳多图像上传器
让我更好地解释一下这个标题。 我正在寻找的是一个可以上传多个图像的图像上传器(大约 200 个是理想的)。图像上传器需要能够处理:
a) 某种进度指示器
b) 发送上传的文件 通过脚本调整它们的大小并删除原始文件
现在,我想这是在某个地方,通过我的谷歌搜索产生了不好的结果。 有没有人有过对此有用的经验? jQuery 是理想的选择,但不是必需的。
Let me better explain this title.
What I am looking for is an image uploader that uploads multiple images (around 200 would be ideal). The image uploader would need to be able to handle:
a) Some sort of progress indicator
b) Sending the uploaded files
through a script that sizes them and deletes the originals
Now, I imagine this is out there somewhere, by my Google searches have yielded bad results.
Does anyone have experience with something that would work good for that?
jQuery would be ideal, but is not necessary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您与 Flash 密切相关,为用户提供有关上传进度的视觉反馈。您可以在 jQuery 上设计整个 UI,但最终它将是一个 Flash 组件,将文件发送到服务器并报告上传进度。
这是迄今为止经过最多测试和标准的程序。
Gmail 使用它。
编辑:这是我使用的自定义解决方案的源代码。
<代码>
<代码>
You are pretty tied up to Flash to give the user visual feedback on the upload progress. You can design the whole UI on jQuery but eventually it will be a Flash component sending the files to the server and reporting back upload progress.
That is, so far, the most tested and standard procedure.
Gmail uses it.
edit: here is the source code of a custom solution I use.
您可以使用 swFupload(Google swfupload)来完成此操作。
使用 jQ swfUpload 插件将使它更容易在代码中使用:
http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/
You can do this with swFupload (Google swfupload).
Using the jQ swfUpload plugin will make it easier to use in your code:
http://blogs.bigfish.tv/adam/2009/06/14/swfupload-jquery-plugin/