我正在尝试通过嵌套模型保存图像
**模型:
Listing
has_many:photos
accepts_nested_attributes_for :photos, :allow_destroy => true
Photo
belongs_to:listing
has_attached_file :data, :styles=>{:featured => "88x63#", :search_result => "122x91#"}
列表控制器:
def new
@listing = Listing.new
@listing.photos.build
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @listing }
end
end
def create
@listing = Listing.new(params[:listing])
if @listing.save
redirect_to(:action=>'index')
else
render :action => "new"
end
end
视图:
<%= form_for [@listing] do |f| %>
<%= f.fields_for :photos do |ph| %>
<%= ph.file_field :data %>
<% end%>
<%end%>
这里我只提到了视图中的一个字段,但是我使用了很多字段,除了数据(图像)字段外,所有字段都保存在数据库中。
如果我在照片模型中验证数据的存在,我上传了一张图片后,我得到了“照片不应为空”的信息。
答案 0 :(得分:6)
除非您有多部分表格,否则您将无法上传图片 添加:html =&gt; {:multipart =&gt; true}声明到form_for声明,所以你得到这样的东西
<%= form_for(@listing, :html => { :multipart => true }) do |f| %>