名、名前、写真を含むプロフィールページの編集フォームを作成しました
<%= form_tag "/profiles/update", :html => {:multipart => true} do%>
<h4>First Name:</h4>
<%= text_field_tag :first_name, @profile.first_name %>
<h4>Last Name:</h4>
<%= text_field_tag :last_name, @profile.last_name %>
<h4>Photo</h4>
<%= file_field_tag :photo %>
<%= submit_tag "Save changes" %>
<% end %>
そして更新アクションで私は置きました
@profile.update_attributes(:first_name => params[:first_name], :last_name => params[:last_name], :photo => params[:photo])
したがって、フォームの編集を実行し、ファイルフィールドに新しい画像を選択して送信すると、このエラーが発生します
Paperclip::AdapterRegistry::NoHandlerError in ProfilesController#update
No handler found for "Pic.jpg"
ここでの問題は何ですか?