我有一个应用程序,其中有一个'Gig'模型,它由许多'歌曲'组成。 我希望每首歌都有一个用户必须上传的song_file。
我刚刚安装了paperclip gem(意图很快添加AWS),但是一旦我添加<div class="col-md-4"><%= f.input :song_file, as: :file %></div>
,Gig _form上的'submit'按钮就不再有效了。
如果我没有附加文件,“提交”工作正常,“歌曲”更新。只要我选择要上传的文件,单击该按钮就不会执行任何操作。
我不知道我做了什么把它塞进去......任何帮助都会非常感激!
使用C9.io
宝石
source 'https://rubygems.org'
gem "paperclip", "~> 4.2"
gem 'cocoon'
gem 'simple_form'
gem 'twitter-bootstrap-rails'
gem 'devise'
etc...
千兆/ _form.html.erb
<div class="col-md-6">
<h2>Define the gig</h2>
<%= simple_form_for(@gig) do |f| %>
<%= f.error_notification %>
<div class="form-inputs">
<%= f.input :gig_name %>
<%= f.input :gig_date, class: "input-append date form_datetime" %>
</div>
</div>
<div class="col-md-6">
<h2>Add the songs</h2>
<%= f.simple_fields_for(:songs) do |song| %>
<%= render 'song_fields', :f => song %>
<% end %>
<div class="links">
<%= link_to_add_association 'Add Another Song', f, :songs, class: "btn btn-primary col-md-8 col-md-offset-4" %>
</div>
<br>
</div>
<div class="form-actions">
<%= f.button :submit, class: "btn-primary col-md-12" %>
</div>
<% end %>
</div>
千兆/ _song_fields.html.erb
<div class="nested-fields">
<div class="row">
<div class="col-md-4"><%= f.input :name %></div>
<div class="col-md-4"><%= f.input :singfile %></div>
<div class="col-md-4"><%= f.input :song_file, as: :file %></div>
<%= link_to_remove_association "Remove Song", f, class: "btn btn-default btn-danger col-md-4" %>
</div>
</div>
Gig_Controller params
def gig_params
params.require(:gig).permit(:gig_name, :gig_date, songs_attributes: [:id, :name, :singfile, :song_file ])
end
演示模型
class Gig < ActiveRecord::Base
belongs_to :user
has_many :songs
accepts_nested_attributes_for :songs, :reject_if => :all_blank, :allow_destroy => true
end
歌曲模型
class Song < ActiveRecord::Base
belongs_to :song
has_attached_file :song_file
end
答案 0 :(得分:0)
我在
的表单中解决了这个添加:html => { :multipart => true }
的问题
`<%= f.simple_fields_for(:songs), :html => { :multipart => true }` do |song| %>
<%= render 'song_fields', :f => song %>
<% end %>`