我遇到了载波和轨道4强参数的问题。我有一个非常简单的模型,带有载波上传按钮。如果有人在没有选择要上传的文件的情况下提交上传表单,我想显示错误消息。
现在,我收到此消息时出现param not found:photo
错误:
# Never trust parameters from the scary internet, only allow the white list through.
def photo_params
params.require(:photo).permit(:image)
end
发生此错误是因为Rails 4的强参数要求提供图像参数才能提交表单,但由于用户未选择图像,因此不存在该图像。
我无法找到解决此问题的方法,并将其重定向到相同的操作并显示错误消息。
有没有办法用强参数做到这一点?
当我尝试使用没有选择照片的表单时,这是开发日志: https://gist.github.com/leemcalilly/09b6166ce1af6ca6c833
当我选择照片并成功上传时,这是开发日志: https://gist.github.com/leemcalilly/1f1e584f56aef15e7af1
其他相关文件: * models / photo.rb - https://gist.github.com/leemcalilly/95c54a5df4e4ee6518da * controllers / photos_controller.rb - https://gist.github.com/leemcalilly/c0723e6dc5478b0f914d * uploaders / image_uploader.rb - https://gist.github.com/leemcalilly/5e43f6524734991773ae * views / photos / index.html.erb - https://gist.github.com/leemcalilly/a8c4c808e5e8a802933b * views / photos / _form.html.erb - https://gist.github.com/leemcalilly/cd0fd518c1b47d9bfb62 * initializers / carrierwaver.rb - https://gist.github.com/leemcalilly/49e04fa1dda891dd108b
答案 0 :(得分:53)
rails guides provides the solution。使用fetch
方法的方法与require
方法相同。 注意第二个参数:它提供默认值。因此,如果找不到params[:photo]
,将返回默认值(空哈希,如下例所示):
params.fetch(:photo, {})
答案 1 :(得分:12)
很抱歉发现这有点晚了,好了,现在看看你看起来像这样的表单代码
<%= form_for @photo, :html => {:multipart => true} do |f| %>
<% if @photo.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@photo.errors.count, "error") %> prohibited this photo from being saved:</h2>
<ul>
<% @photo.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<fieldset>
<legend>Upload a Photo</legend>
<div class="field">
<%= f.file_field :image %>
</div>
</fieldset>
<%= f.submit "Upload Photo", :class => "btn btn-small" %>
<% end %>
现在这对rails
或carrierwave
或strong_parameter
来说不是问题,html
是如何运作的。就像这样,如果您输入了file
并且nothing
附加了name
,则value
和HTML
对不会被checkbox
认为发送到服务器它类似于disabled
或<%= f.file_field :image %>
字段
现在,因为您的表单只包含
photo
它不包含任何其他字段(照片模型的属性)
因此,当file
输入does not
包含任何附件时,{"utf8"=>"✓", "authenticity_token"=>"IvOieBvxdA6qzVKrt1dYBuCXlt+uuWCyWjUAuTK0XEU=", "commit"=>"Upload Photo"}
哈希不会被构造
在您的日志中也很明显
{"utf8"=>"✓", "authenticity_token"=>"I4O0w+Wk8nJaD6HJRSC+FfuAip5NVE6TkCUFDEN+sW0=", "photo"=>{"image"=>#<ActionDispatch::Http::UploadedFile:0x007fc730b5de08 @tempfile=#<Tempfile:/var/folders/0m/n32lgww55vzf5pfc4kh17gm00000gr/T/RackMultipart20130801-32602-1nj6u2b>, @original_filename="bag.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"photo[image]\"; filename=\"bag.jpg\"\r\nContent-Type: image/jpeg\r\n">}, "commit"=>"Upload Photo"}
params[:photo].present?
现在您可以看到两者之间的差异,而差异是导致错误的原因,因为在
中第一个案例
params[:photo].present?
=&gt;假
第二个案例
params.require(:photo).permit(:image)
=&gt;真的
因此当你执行此操作.require(:photo)
时,代码会抛出错误
因为not
params
def photo_params
if params[:photo].present?
params.require(:photo).permit(:image)
end
end
的行提及
也许你可以做这样的事情
HTML
这不是任何人的错,因为no
如果no
附件name=value
photo
对提交给服务器,{{1}}是如何工作的,因为{{1}}参数是{没有发送到服务器,因此哈希没有它们,因此强参数抛出错误
希望这个帮助