Rails Nested Forms With Images

后端 未结 2 1649
日久生厌
日久生厌 2021-02-08 02:34

So I\'m building a nested form with an Campaigns model and a Sites model where Campaigns has_many Sites. In my Campaigns form I have:

<%= f.fields_for :sites          


        
2条回答
  •  心在旅途
    2021-02-08 03:20

    You may want to investigate the paperclip gem: https://github.com/thoughtbot/paperclip

    It lets you do this to show a thumbnail of the existing picture.

    <% if @thing.logo? %> <%= image_tag @thing.logo(:thumb) %>
    Change <% end %> <%= f.label :logo %> <%= f.file_field :logo %>

提交回复
热议问题