自从我开始深入研究表单、关联、哈希、符号以来已经快一周了……但如果没有你的帮助,我似乎无法解决这个难题。
我正在开发一个显示不同画廊内容的项目。基本思想是当用户看到画廊的名称(名称是链接)时,能够点击选择的画廊。然后显示属于该图库的所有图像。在底部应该有一个链接“在此图库中添加图片”。
我的模型:
class Gallery < ActiveRecord::Base
attr_accessible :name
has_many :pictures
end
class Picture < ActiveRecord::Base
attr_accessible :image
belongs_to :gallery
end
我在gallery_id 上为“图片”表创建了索引。
我的大问题出现在这里,如何将 gallery_id 传递给控制器的操作 'new' 。正如我在“使用 Rails 进行敏捷 Web 开发”中看到的那样:
<%= link_to 'Add a picture here...',new_picture_path(:gallery_id=>@gallery.id) %>
在这种情况下,foreign_key :gallery_id 似乎暴露在浏览器的 URL 栏中。第二个问题是 :gallery_id 可用于控制器的“新”功能,但“消失”用于“创建”功能(导致错误“找不到没有 ID 的画廊”)。当我在图片的_form中添加一个隐藏字段时,问题就消失了,就我而言:
<%= form_for(@picture) do |f| %>
<div class="field">
<%= f.hidden_field :gallery_id , :value=>params[:gallery_id] %>
<%= f.label :image %><br />
<%= f.file_field :image %>
</div>
<div class="actions">
<%= f.submit "Create" %>
</div>
<% end %>
这是我在“图片”控制器中的定义:
def new
@gallery=Gallery.find(params[:gallery_id])
@picture=@gallery.pictures.build
end
def create
@gallery = Gallery.find(params[:gallery_id])
@picture = @gallery.pictures.new(params[:picture])
if @picture.save
redirect_to(@picture, :notice => 'Picture was successfully created.')
else
redirect_to(galleries ,:notice => 'Picture was NOT created.')
end
end
最后是 show.html.erb 中画廊的 link_to 定义:
<% for picture in selpics(@gallery) %>
<div id= "thumb" >
<%= image_tag picture.image %>
</div>
<% end %>
<%= link_to 'Add a picture here...',new_picture_path(:gallery_id=>@gallery.id) %>
这是提交图像之前的调试输出: --- !map:ActiveSupport::HashWithIndifferentAccess gallery_id: "6" action: new controller: pictures
并在提交“创建”按钮后(引发异常):
{"utf8"=>"✓",
"authenticity_token"=>"IGI4MfDgbavBShO7R2PXIiK8fGjkgHDPbI117tcfxmc=",
"picture"=>{"image"=>"wilsonblx.png"},
"commit"=>"Create"}
如您所见,“图片”哈希中没有像“gallery_id”这样的东西。
总结我的问题给你:
有没有办法在没有 hidden_field 的情况下传递 foreign_key ?
我可以以某种方式隐藏通过 URL 栏中显示的外键表单吗?
是否有使用 'link_to' 传递参数的替代方法?
谢谢你 。