ruby-on-rails - Rails Acts_as_votable Gem Like/Unlike 按钮与 Ajax

标签 ruby-on-rails ajax button rubygems social-media-like

我是 Ruby On Rails 的新手,我使用acts_as_votable gem 来创建喜欢和不喜欢的按钮来让用户喜欢和不喜欢帖子,但我不能让它们从喜欢变为不喜欢(反之亦然)并在每次他们更新计数器时单击而不刷新页面。我尝试遵循其他类似的答案,但我没有运气。
如果没有我试图实现 Ajax 的困惑更改,我的代码如下所示:

发布模型acts_as_votable 和用户模型acts_as voter

帖子 Controller 有

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 的答案,但我无法复制结果。
先感谢您!

最佳答案

首先,您需要指出您的帖子 Controller 以响应 js 格式。那么posts_controller中的两个 Action 变得:

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: :putmethod: :get , 所以在你的 config/routes.rb 中更改它,并添加 类(class) 到您的链接以将其绑定(bind)到 js 中。

最后,您需要在 app/views/posts/ 中创建 2 个 View :
  • 像.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' %>');
    });
    
  • 不像.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>
    

    编辑:我编辑我的答案。使用类而不是 id 更新您的链接。并查看 2 js View 找到 closest() .它在我的沙盒应用程序的索引和显示页面中运行良好。因此,请随时适应您的标记。

    关于ruby-on-rails - Rails Acts_as_votable Gem Like/Unlike 按钮与 Ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31251246/

    相关文章:

    Python 2.7 Tkinter 如何更改按钮文本的文本颜色

    ruby-on-rails - Rails admin以has_many嵌套形式隐藏hide_to字段

    ruby-on-rails - 当不在括号内时,Ruby 三元条件似乎被忽略了?

    ruby-on-rails - 验证多列的 allow_blank

    javascript - 如何让 AngularJS 忽略 ajax OPTIONS 方法?

    javascript - jQuery ReplaceWith() 回调函数来更新内容

    ruby-on-rails - 如何链接到与用户关联的帖子 (rails 4)?

    javascript - 有什么方法可以对最终用户隐藏 javascript 函数吗?

    javascript - 可移动按钮的名称是什么?

    javascript - 捕获(不同)打印/取消打印按钮事件(单击)