具有多张图片上传功能的多态回形针插件

发布于 2024-11-24 13:23:27 字数 270 浏览 1 评论 0原文

我使用回形针多态插件来跟踪我的附件。我已经完成的教程使用了单个附件(图像) http://burm.net/2008/10/17/ruby-on-rails-polymorphic-paperclip-plugin-tutorial/

如何使用此插件启用多个图像?

谢谢。

I have used paperclip polymorphic plugin to track my attachments. The tutorialwhich I have been through has used single attachments(image) http://burm.net/2008/10/17/ruby-on-rails-polymorphic-paperclip-plugin-tutorial/.

How do i enable multiple images with this plugin?

Thanks.

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

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

发布评论

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

评论(1

胡大本事 2024-12-01 13:23:27

您必须对代码进行一些更改。

<p>
  Attach a file or image <br />
  <%= f.file_field :data%>
</p>

上面的代码应该是

<%= file_field_tag 'model[data][]'%>
<%= file_field_tag 'model[data][]'%>

这将允许您添加 2 个图像。

希望这有帮助。

You have to make some changes to the code.

<p>
  Attach a file or image <br />
  <%= f.file_field :data%>
</p>

The upper code should be

<%= file_field_tag 'model[data][]'%>
<%= file_field_tag 'model[data][]'%>

This will allow you to add 2 images.

Hope this helps.

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