我已经得到它,以便我列出临床医生正在与之交谈的独特患者。我可以调出有关患者的详细信息,但我无法调查与相关评论相关的任何内容。
<% @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。
def index
@comments = current_clinician.comments
end
class Comment < ActiveRecord::Base
belongs_to :clinician
belongs_to :patient
end
答案 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。