ActiveAdmin.register Project do
permit_params :name, :content, :price, :image
show do
attributes_table do
row :name
row :content
row :price
rpw :image
end
end
form :html => {:enctype => "multipart/form-data} do
f.inputs do
f.input :name
f.input :content
f.input :price
f.input :image
end
end
end
现在我正在使用ActiveAdmin。我无法理解的是" show..do"和"形成......做"。我想解释一下它们是如何不同的,为什么我需要同时写两个。
非常感谢你的帮助。
答案 0 :(得分:0)
一个用于显示另一个要编辑的记录。