我想重寫設計註冊控制器,以便用戶將能夠上傳他的頭像以及更改其他數據,並在上傳後裁剪userpic。設計註冊控制器+回形針
我添加了所有necesarry用戶回形針屬性,創建作物觀點,我的註冊控制器看起來像這樣:
class RegistrationsController < Devise::RegistrationsController
def update
if params[resource_name][:avatar].blank?
super
else
@user=resource
respond_to do |format|
if resource.update_attributes(params[resource_name])
flash[:notice]='Avatar successfully uploaded.'
format.html {
render :action => 'crop'
}
format.xml { head :ok }
else
format.html { render :action => "editpicture" }
format.xml { render :xml => @demotivator.errors, :status => :unprocessable_entity }
end
end
end
end
end
,但是當我用圖片提交表單,什麼也沒有發生,除了火狐顯示「加載。 ..「永遠!在開發日誌中絕對沒有更新.. :(
任何人都可以告訴我,我該怎麼辦是做錯了
PS用戶編輯表格看起來像這樣:?
雖然Rails 4應用程序如何完成這項工作? – 2013-08-17 00:15:52