如何更改 plupload 中文件的位置

发布于 2024-12-09 08:16:40 字数 199 浏览 1 评论 0原文

我在我的网站中使用 plupload 来上传文件。我希望用户能够在开始上传之前对文件进行排序(更改位置文件)。 为此,我在队列更改事件上附加了 jquery ui 可排序插件,该插件工作正常,但是当我们对文件进行排序时,它将在 ui 中排序,但文件的实际位置保持不变。因此上传按照其内部顺序开始。有什么方法可以按照我的喜好对 plupload 中的文件进行排序。 请告诉我是否有人知道

i m using plupload in my site for uploading files. I want user able to sort files (change position files) before start uploading.
for that i have attached jquery ui sortable plugin on the queue changed event that working fine but when we sort a file it will sort in the ui but actual position of file remain same. so the uploading start in their internal sequence. it there any way to sort files in plupload as I like.
pls tell me if anybody know

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不弃不离 2024-12-16 08:16:40

我不知道 plupload 是否支持对排队文件进行自定义排序,或手动更改其索引。
plupload 是一个典型的基于 flash 的多文件上传器。文件数据存储在闪存中(连同顺序)。

因此,更改 DOM 中的顺序(使用 jquery)不会影响实际的上传顺序。
plupload文档中,我读到了一些关于QueueChangedevent的内容
公共事件 QueueChanged(uploader:Uploader)

当上传队列更改(添加或删除文件)时会触发此事件。您将可以访问 uploader.files 数组。看看是否可以在此处对数组进行排序。

希望这会有所帮助。

I don't know if plupload supports custom sorting of queued files, or manually changing their index.
plupload is a typical flash-based multiple file uploader. The filedata is stored in flash (along with the order).

So changing the order in the DOM (with jquery) isn't going to affect the actual upload order.
In the plupload documentation I read something about a QueueChangedevent
public event QueueChanged(uploader:Uploader)
.

This event is fired when the upload queue is changed (files added or removed. you'll have access to uploader.files array. See if you can sort the array here.

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文