У меня есть эта модель булавки:
class Pin < ActiveRecord::Base
belongs_to :user
belongs_to :image
accepts_nested_attributes_for :image
attr_accessible :image_attributes
end
У меня есть эта модель изображения:
class Image < ActiveRecord::Base
has_many :pins
validates_attachment_presence :attachment
validates_attachment_size :attachment, :less_than => 5.megabytes
validates_attachment_content_type :attachment, :content_type => ['image/jpeg', 'image/png']
accepts_nested_attributes_for :pins
attr_accessible :pins_attributes
end
Для создания новой булавки я хочу использовать вложенные атрибуты для изображения, но она не работает: Код, который я использую в контроллере и файле просмотра:
def new
@pin = Pin.new
@pin.build_image if @pin.build_image.nil?
end
def create
@pin = Pin.new(params[:pin])
@pin.user_id = session[:user_id]
respond_to do |format|
if @pin.save
format.html { redirect_to(@pin, :notice => 'Pin was successfully created.') }
format.xml { render :xml => @pin, :status => :created, :location => @pin }
else
@boards = User.find(session[:user_id]).boards
format.html { render :action => "new" }
format.xml { render :xml => @pin.errors, :status => :unprocessable_entity }
end
end
end
И в файле просмотра:
<%= form_for @pin,:html=>{ :multipart => true} do |f| %>
<% if @pin.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@pin.errors.count, "error") %> prohibited this pin from being saved:</h2>
<ul>
<% @pin.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :title %>
<%= f.text_area :title %>
</div>
<%= f.fields_for :image do |f_i| %>
<div class="field">
<%= f_i.label :attachment %>
<%= f_i.file_field :attachment %>
</div>
<% end %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
Все время форма выдает ошибку:
Image attachment file name must be set.