通知システムを作ろうとしているのですが、問題があります
これを使用してビューに通知を発行する必要があります: track_activity.js.erb
<% publish_to "/notifications/new" do %>
$("#activity").append("<%= j render(@activity) %>");
<% end %>
アクショントラックアクティビティを含む私のapplication_controller
def track_activity(user, trackable, action = params[:action], author = current_user)
@activity = Activity.create! user: user, trackable: trackable, action: action, author: author
end
そして、他のユーザーがこのようなものを作成するたびに、このメソッドを使用します
comment_controller.rb
def create
@post = Post.find(params[:post_id])
@comment = @post.comments.build(comment_params)
@comment.user = current_user
if @comment.save
track_activity @post.user, @comment
redirect_to post_path @post
else
render 'new'
end
end
レールが track_activity アクションを呼び出すたびに track_activity.js.erb をアタッチする方法は? track_activity アクションの Respond_to が役に立たない