0

我有 3 个模型。

  ProjectDate (available dates for a project) which 
  has_many Events

  Events (the appointments on any given ProjectDate)
  belongs_to ProjectDate
  belongs_to User

  User (the person who created the Event)
  has_many Events

我想知道当我还获取与 ProjectDate 关联的所有事件时,如何使用包含(或者是否可以使用包含)来获取与事件关联的用户属性。

我希望能够提取 user.firstname(请参阅下面的查看代码)

这就是我获取 ProjectDat 数组及其相关事件的方式:

     @projectschedule  = ProjectDate.where(project_id: params[:p]).includes(:events).order(the_date: :asc)

我真的被困住了。

这是查看代码:

    <table width="100%;" class="">
      <tr>
        <td >
          <%=p.the_date.strftime("%A")%><br>
            <%=p.the_date.strftime("%b. %d ")%>
          </td>
          <td class="dateinfo"><%   p.events.users.each do |e| %>
             <ul >
               <li ><%= e.starts_on.strftime("%l:%m %P ") %><%= e.user.firstname %><%= e.description %><button >O</button><button >O</button></li>
            </ul><% end %> 
           </td>
         </tr>
       </table>
 <% end %> 
4

1 回答 1

1

您可以像这样嵌套包含参数。

@projectschedule  = ProjectDate.where(project_id: params[:p]).includes(events: :user).order(the_date: :asc)

注意events: :user,这将确保两个事件和它的用户都被急切加载。

于 2014-11-13T14:59:38.373 回答