我目前正在做Michael Hartl的Ruby on Rails教程。Ruby on Rails自動登錄後導致空白用戶屏幕
目前,我對PDF的這一部分,http://railstutorial.org/chapters/sign-in-sign-out#sec:sessions
我的問題是這樣的......
當創建一個新用戶,並自動簽署,簽署了一個新的用戶碼功能正常用戶英寸然而,我後來遇到麻煩。
而不是顯示用戶頁面或重定向一些地方,我無法重定向到任何頁面,而是卡在一個空白的本地主機:3000 /用戶屏幕。
這似乎是問題所在,但它可能不是。
def create
@user = User.new(params[:user])
respond_to do |format|
if @user.save
sign_in @user
flash[:success] = "Welcome to the Sample App!"
redirect_to users_path
else
render 'new'
end
end
end
請讓我知道,如果有更多的信息可能會有所幫助。
非常感謝。
什麼是寫入日誌文件? (log/development.log) – zetetic 2010-10-18 04:26:03
你是否從他的視圖中定義了UserController的索引操作? – shingara 2010-10-18 08:28:18