3

名、名前、写真を含むプロフィールページの編集フォームを作成しました

<%= 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"

ここでの問題は何ですか?

4

1 に答える 1

4

そのはず:

<%= form_tag "/products/create", :multipart => true do%>

これで正常に動作します

于 2012-05-10T04:35:56.763 に答える