我写了一个控制器
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。但它实际上无法工作。如何更改这些代码以使其正常工作。
希望你能帮助我,非常感谢:)