我希望我的视图上的链接文本显示为医院,国家。Country 是一个guidelines 属性,所以我需要能够从'hospital' 访问guidelines.country 并显示它
例如 Get Well 医院、Sickland
我不确定如何正确编码。目前在我的视图文件中,我有
<% @list.each do |hospital| %>
<tr class="tablerow">
<td><%= link_to (hospital, country), :action => :topichospital, :hospital => hospital, :country=>country %></td>
</tr>
当我刚有的时候它工作了,但我不知道如何添加国家
<% @list.each do |hospital| %>
<tr class="tablerow">
<td><%= link_to hospital, :action => :topichospital, :hospital => hospital %></td>
</tr>
我在guidelines_controller.rb 中的listhospital 行动是
def listhospital
@list = Guideline.order(:hospital).uniq.pluck(:hospital)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @guidelines }
end
end