从两个表中访问表数据

时间:2013-10-21 05:10:16

标签: ruby-on-rails-3

对rails很新,并且在从单独的表中访问数据时遇到一些问题。

class Trial < ActiveRecord::Base
  attr_accessible :site_id

  has_many :sites

end


class Site < ActiveRecord::Base
  attr_accessible :site_id, :site_name

  belongs_to :trial

end

我的观点。

<table class="table">
    <% @list.each do |list| %>
    <tr>
    <td>
  <%= link_to list.site_name, view_path %>
    </td>
    </tr>
    <% end %>
</table>

我希望能够为每个记录列出site_name,其中试用版和网站ID匹配,但不确定最佳方法。

0 个答案:

没有答案