从rails中的循环中获取唯一值

时间:2015-03-16 03:15:53

标签: ruby-on-rails loops uniq do-loops

我已经得到它,以便我列出临床医生正在与之交谈的独特患者。我可以调出有关患者的详细信息,但我无法调查与相关评论相关的任何内容。

应用\视图\评论\ index.html.erb

    <% @comments.map(&:patient).uniq.each_with_index do |comment, index| %>
      <div class="profile-post color-one">
          <span class="profile-post-numb"><%= index+1 %></span>
          <div class="profile-post-in">
              <h3 class="heading-xs"><a><%= link_to "#{comment.first_name} #{comment.last_name}", comment_path(comment) %></a></h3>
              <p><%= comment.diagnosis %><i class="pull-right"><%= link_to "Edit", edit_comment_path(comment) %> <%= link_to "Delete", comment_path(comment), method: :delete, data: {confirm: 'Are you sure you want to delete'} %></i></p>
          </div>
      </div>
    <% end %>

link_to也被破坏,因为它们应该指向评论页面但是传递了patient.id而不是comment.id。

comments_conrtoller.rb

def index
 @comments = current_clinician.comments
end

comment.rb

class Comment < ActiveRecord::Base
 belongs_to :clinician
 belongs_to :patient
end

1 个答案:

答案 0 :(得分:0)

@comments.map(&:patient)提供了类Patient的对象,这就是链接传递patient_id而不是comment_id的原因。

您应该在这里使用group代替map

@comments.group(:patient)..的某些内容;必须更改循环语法以使用此范围的输出。

有关group如何运作的详细信息,请参阅http://apidock.com/rails/v4.0.2/ActiveRecord/QueryMethods/group