我需要将两个实例变量传递给一个 ajax 请求正在使用的 javascript 文件来更新用户显示。这是我需要做的:
respond_to do |format|
if @post.save
format.js { @post @user_vote } # <-- right here
else
format.html { redirect_to :back, :alert => 'There was an error in removing the vote' }
end
end
这是怎么做到的?