如何使用 drupal 7 上传多个文件?

发布于 2024-11-04 04:12:38 字数 491 浏览 0 评论 0原文

我正在制作一个包含表单的 drupal 7 模块,我想连续上传多个文件。目前我正在使用 Managed_file 类型的输入字段。

$form['attachment'] = array(
                            '#title' => t('Attachment'),
                            '#type' => 'managed_file',
                            '#default_value' => variable_get('attachment', ''),
                          '#upload_location' => 'public://perm/',
                            );

这给了我上传按钮,但只允许我上传一个文件。有没有办法让我告诉这个表单上传文件并仍然保留第二次上传的选项打开?

I'm making a drupal 7 module that contains a form and I would like to upload multiple files in a row. Currently I'm using a managed_file type of input field.

$form['attachment'] = array(
                            '#title' => t('Attachment'),
                            '#type' => 'managed_file',
                            '#default_value' => variable_get('attachment', ''),
                          '#upload_location' => 'public://perm/',
                            );

This gives me the upload button, but only lets me upload one file. Is there a way I can tell this form to upload a file and still keep the option for a second upload open?

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

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

发布评论

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

评论(2

小巷里的女流氓 2024-11-11 04:12:38

查看新的ajax系统,它很容易实现,一旦选择文件以动态向表单添加其他文件字段,它应该允许您触发ajax回调,只需谷歌“drupal 7 ajax”,您就会发现几十个例子

check out the new ajax system, it's pretty easy to implement, it should allow you to trigger an ajax callback once the file has been selected to add additional file fields to the form dynamically, just google "drupal 7 ajax" and you'll find dozens of examples

嘴硬脾气大 2024-11-11 04:12:38

您检查过这是否是您所需要的吗? http://drupal.org/project/multiupload_filefield_widget

have you checked to see if this is what you need? http://drupal.org/project/multiupload_filefield_widget

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