之前:使用CarrierWave,我可以使用新图片更新用户个人资料中的图片而不会出现问题。
然后:我安装了ImageMagick
之后:当我尝试更新用户个人资料上的图片时,我收到“无法将nil转换为字符串”错误消息。但是,如果我没有选择新图像并只按“更新”它工作正常(即它显示原始图像)
任何人都可以看到问题所在吗?
TypeError in UsersController#update
can't convert nil into String
Rails.root: /Users/mm/Sites/AT
Application Trace | Framework Trace | Full Trace
app/controllers/users_controller.rb:64:in `block in update'
app/controllers/users_controller.rb:63:in `update'
参数
{"utf8"=>"✓",
"_method"=>"put",
"authenticity_token"=>"N1/rSIzBwYLFecQ59tCasRpt6Tst7GOSvdEob93ZrrA=",
"user"=>{"name"=>"M",
"email"=>"myemail@gmail.com",
"image"=>#<ActionDispatch::Http::UploadedFile:0x00000102fef328 @original_filename="btc.jpg",
@content_type="image/jpeg",
@headers="Content-Disposition: form-data; name=\"user[image]\"; filename=\"btc.jpg\"\r\nContent-Type: image/jpeg\r\n",
@tempfile=#<File:/var/folders/rc/rcFucU9oF5qT5vZE+tL1JE+++TI/-Tmp-/RackMultipart20120226-20685-1x4k7ph>>},
"commit"=>"Update User",
"id"=>"2"}
UsersController
def update
@user = User.find(params[:id])
respond_to do |format|
if @user.update_attributes(params[:user])
format.html { redirect_to @user, notice: 'User was successfully updated.' }
format.json { head :ok }
else
format.html { render action: "edit" }
format.json { render json: @user.errors, status: :unprocessable_entity }
end
end
end
表格
<%= form_for(@user) do |f| %>
<% if @user.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@user.errors.count, "error") %> prohibited this user from being saved:</h2>
<ul>
<% @user.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :name %><br />
<%= f.text_field :name %>
</div>
<div class="field">
<%= f.label :email %><br />
<%= f.text_field :email %>
</div>
<div class="field">
<%= f.file_field :image %><br />
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
答案 0 :(得分:0)
问题是我没有使用Amazon Key启动服务器,因此文件没有上传,因此在尝试显示图像时无法将nil转换为字符串。