0

したがって、コメントの下に「いいね」ボタンのあるページがあり、ページ全体を更新せずにこれを行う方法を見つけようとしています。現在、コードは次のようになっています。

- if can? :like, comment
  = " · "
  - if likes.find_by_user_id(current_user.id).nil?
    = link_to "Like", like_comment_path(comment), method: :post
  - else
    = link_to "Unlike", unlike_comment_path(comment), method: :post
- if comment.user == current_user
  = " · "
  = link_to "Delete", comment_path(comment), method: :delete,
    :data => { :confirm => "Are you sure you want to delete this comment?" }
- if likes.count > 0
.comment-likes
  - likers = likes.map { |like| link_to(like.user_name, "#") }
  - if likers.length > 1
    - likers = likers.slice(0, likers.length - 1).join(", ").concat(" and " +                               likers.slice(-1))
  - else
    - likers = likers[0]
  = "Liked by #{likers}".html_safe

like と like :post のメソッドを :update に変更すると、大きな違いがあるように見えましたが、この関数は ajax と :post を使用していませんか? そうでない場合は、これを ajax 関数にする方法を教えてください。

ここに私のcomments_controller.rbのものがあります

def like
 comment_vote = resource.like current_user
 Event.comment_liked!(comment_vote)
 redirect_to discussion_url(resource.discussion)
end

def unlike
 resource.unlike current_user
 redirect_to discussion_url(resource.discussion)
end
4

1 に答える 1

3

= link_to "Like", like_comment_path(comment), method: :post, remote: true

次に、likes_controller create アクションで、respond_to format.js

def create
  respond_to do |format|
    format.html { .. your liking code .. }
    format.js {.. your liking code .. }
  end
end

これにより、ビュー フォルダー内の create.js.erb が呼び出され、そこから html を動的に更新できます。

于 2012-09-17T07:21:20.290 に答える