私は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になると思いますが、実際には機能しません。 これらのコードを変更して正しく機能させる方法。
あなたが私を助けてくれてありがとうございます:)