我寫了controlloer爲什麼這些代碼無法按預期工作?
class NotificationsController < ApplicationController
before_filter :authenticate_user!
def index
@notification = current_user.notification
if @notification.unread == 0
redirect_to root_path
else
@notification.unread == 0
@notification.save
end
end
end
,我希望@notification.unread
爲0後顯示指數page.But不能實際工作。 如何更改這些代碼以使其正常工作。
希望你能幫助我,非常感謝:)
哦,我做出了這樣的嚴重錯誤。 :( – hsming 2013-03-25 15:27:02