8

我有两个简单的模型,Pin 和 Comment,Comments 属于 Pin:

class Pin < ActiveRecord::Base
    has_many :comments, dependent: :destroy

class Comment < ActiveRecord::Base
    belongs_to :pin

在 Pin 的索引操作中,我基本上列出了所有引脚 + 一个div。当用户选择 pin 时,此div必须显示所有评论。

概念很简单,但我不知道如何实现它。我发现了许多相关的主题,但我总是迷失在与我的问题的差异中。

一些精确的问题:

  • 如何做这个ajax加载?(用jQuery)
  • 我需要使用部分或使用评论的索引视图吗?
4

1 回答 1

15

我将使用一个链接让用户选择一个 Pin,但你明白了:

#:remote => true allows ajax stuffz.
<%= link_to 'show comments', pin_comments_path(@pin), :remote=> true %>

在 comments_controller.rb 中(我在这里使用 index 操作,但可以根据您的需要进行调整)

def index 
  @pin = Pin.find(params[:pin_id])
  @comments = @pin.comments.all

  respond_to do |format|
    format.js { render :pin_comments }
  end
end

在这种情况下,控制器将渲染 pin_comments.js.erb,它将与您的评论 div 交互。

//pin_comments.js.erb
$("#comments_div").html("<%= j(render('show_comments', :comments=> @comments)) %>");

查看部分模板以显示评论

#_show_comments.html.erb
<div id="comments_div">
    <% comments.each do |c| %> 
        <p>
           <h1><%= c.title %></h1>
           <h6>by <%= c.author %> </h6>
           <%= c.content %>
        </p>
    <% end %>
</div>

希望有帮助!

于 2012-11-20T11:00:56.443 回答