第一步是为通知创建一个新模型和控制器
$ rails g model Notification post:references comment:references user:references read:boolean
$ rake db:migrate
$ rails g controller Notifications index
完成后,下一步是将 has_many :notifications 添加到 User、Post 和 Comment 模型中。
完成后,将以下代码添加到 Comments 模型中:
after_create :create_notification
private
def create_notification
@post = Post.find_by(self.post_id)
@user = User.find_by(@post.user_id).id
Notification.create(
post_id: self.post_id,
user_id: @user,
comment_id: self,
read: false
)
end
上面的代码片段会在创建评论后创建通知。下一步是编辑 Notifications 控制器,以便可以删除通知并且用户可以将通知标记为已读:
def index
@notifications = current_user.notications
@notifications.each do |notification|
notification.update_attribute(:checked, true)
end
end
def destroy
@notification = Notification.find(params[:id])
@notification.destroy
redirect_to :back
end
接下来要做的是设置一种在删除评论时删除通知的方法:
def destroy
@comment = Comment.find(params[:id])
@notification = Notification.where(:comment_id => @comment.id)
if @notification.nil?
@notification.destroy
end
@comment.destroy
redirect_to :back
end
最后要做的是创建一些视图。你想做什么,就可以做什么