我是Ruby On Rails的新手,我使用acts_as_votable gem来创建Like和不同的按钮,使用户喜欢和不像Posts但我不能让他们从Like变为不同(和反之)并更新计数器每次他们点击而不刷新页面。我尝试过其他类似的答案,但我没有运气。 如果没有我试图实现Ajax的混乱变化,我的代码看起来像这样:
发布模型acts_as_votable和用户模型acts_as选民
帖子控制器
def like
@post = Post.find(params[:id])
@post.liked_by current_user
redirect_to :back
end
def unlike
@post = Post.find(params[:id])
@post.unliked_by current_user
redirect_to :back
end
路线
resources :posts do
member do
put 'like', to: "posts#like"
put 'unlike', to: "posts#unlike"
end
end
查看
<%= @post.get_likes.size%>
<% if @post.get_likes.size ==1 %>
person like this
<% else %>
people like this
<% end %>
<div class="btn-group">
<% if (current_user.liked? @post) %>
<%= link_to unlike_post_path(@post), method: :put, class: "btn btn-default btn-sm" do %>
<span class="glyphicon glyphicon-chevron-down"></span>
Unlike
<%end %>
<% else %>
<%= link_to like_post_path(@post), method: :put, class: "btn btn-primary btn-sm" do %>
<span class="glyphicon glyphicon-chevron-up"></span>
Like
<% end %>
<% end %>
</div>
我阅读了很多关于Ajax的答案,但我无法复制结果。 先感谢您!
答案 0 :(得分:1)
首先,您需要指出发布控制器以响应js格式。然后posts_controller
中的两个操作变为:
def like
@post = Post.find(params[:id])
@post.liked_by current_user
respond_to do |format|
format.html { redirect_to :back }
format.js { render layout: false }
end
end
def unlike
@post = Post.find(params[:id])
@post.unliked_by current_user
respond_to do |format|
format.html { redirect_to :back }
format.js { render layout: false }
end
end
其次,您需要在链接上传递remote: true
:
<div class="votes">
<% if current_user.liked? @post %>
<%= link_to unlike_post_path(@post), method: :get, remote: true, class: 'unlike_post' %>
<% else %>
<%= link_to like_post_path(@post), method: :get, remote: true, class: 'like_post' %>
<% end %>
</div>
我将method: :put
更改为method: :get
,因此请在config/routes.rb
中进行更改,并在链接中添加类以将其绑定在js中。
最后,您需要在app/views/posts/
中创建2个视图:
like.js.erb
$('.like_post').bind('ajax:success', function(){
$(this).parent().parent().find('.vote_count').html('<%= escape_javascript @post.votes_for.size.to_s %>');
$(this).closest('.like_post').hide();
$(this).closest('.votes').html(' <%= link_to "Unlike", unlike_post_path(@post), remote: true, method: :get, class: 'unlike_post' %>');
});
unlike.js.erb
$('.unlike_post').bind('ajax:success', function(){
$(this).parent().parent().find('.vote_count').html('<%= escape_javascript @post.votes_for.size.to_s %>');
$(this).closest('.unlike_post').hide();
$(this).closest('.votes').html(' <%= link_to "Like", like_post_path(@post), remote: true, method: :get, class: 'like_post' %>');
});
要处理计数更新,我使用.vote_count
类,因此在您的视图中:
<div class="vote_count">
<%= @post.get_likes.size %>
</div>
所以我的观点:
<div>
<div class="vote_count">
<%= @post.get_likes.size %>
</div>
<div class="votes">
<% if current_user.liked? @post %>
<%= link_to unlike_post_path(@post), method: :get, remote: true, class: 'unlike_post' %>
<% else %>
<%= link_to like_post_path(@post), method: :get, remote: true, class: 'like_post' %>
<% end %>
</div>
</div>
编辑:我编辑了我的答案。使用class而不是id更新您的链接。并查看2 js视图以查找closest()。它适用于我的沙盒应用程序中的 index 和 show 页面。所以请随意适应您的标记。