我在更新圖像(用戶的頭像)時遇到問題。我正在使用CarrierWave並有兩種型號:profile
和user
。爲什麼我無法使用CarrierWave更新圖像?
在user#show
頁面上,我有一個表格profile
,其中我有file_field
。配置文件屬於用戶。這裏是表格:
<%= form_for @user.profile do |f| %>
<%= f.file_field :avatar %><br/>
<%= f.submit "Change Avatar" %><br/>
<% end %>
提交後,圖像沒有更新。在服務器日誌中我看到:
Processing by ProfilesController#update as HTML Parameters:
{"utf8"=>"✓",
"authenticity_token"=>"lHbhHK9SLIiTUuBJAAUyz0CSSC1tUhbE0oD2An2QEEY=",
"profile"=>{"avatar"=>#<ActionDispatch::Http::UploadedFile:0x007fa60ff43b40
@original_filename="P1010056.JPG", @content_type="image/jpeg",
@headers="Content-Disposition: form-data; name=\"profile[avatar]\";
filename=\"P1010056.JPG\"\r\nContent-Type: image/jpeg\r\n",
@tempfile=#<File:/var/folders/kq/gjn7ljfx1wx418ptwnbb46vr0000gn/T/RackMultipart20120213-2399-sm0m9c>>},
"commit"=>"Change Avatar", "id"=>"1"}
這是我的個人資料更新動作:
def update
@profile = current_user.profile
if @profile.update_attributes(params[:profile])
redirect_to user_path(current_user)
end
end
我做錯了嗎?
看起來你修剪'「阿凡達」 =>#>'什麼類是價值?另外,在你的模型中,你是否告訴它使用一些東西來處理上傳的文件? – 2012-02-13 01:51:32
我應該怎麼做才能處理上傳的文件,如果我想更改其他模型字段,如:名稱和其他,它們也不會更改 – Pavel 2012-02-13 08:32:31
「未更新」是什麼意思?你在哪裏存儲圖像?如果你去那裏,你看到它嗎? – 2012-02-13 11:57:39