rails分页嵌套路由

时间:2010-11-24 18:55:11

标签: ruby-on-rails will-paginate nested-routes

我正在尝试将contacts分页部分放在rooftops的视图中。 Rooftops有很多联系人,并且还有一个允许/rooftops/1/contacts的嵌套路由。当我尝试创建will_paginate链接时,我得到/rooftops/1作为路径,而不是'/ rooftops / 1 / contacts /'。

有没有办法修改分页路径而不创建我自己的分页链接视图?我已经尝试过使用will_paginate here的rdoc,但它会转到godaddy页面。

有什么想法吗?

class Contact < ActiveRecord::Base
  has_and_belongs_to_many :parents
  has_and_belongs_to_many :rooftops
  has_one :user
  has_one :address, :as => :addressable, :dependent => :destroy
  has_many :phone, :as => :phoneable, :dependent => :destroy
  belongs_to :position
  accepts_nested_attributes_for :address, :reject_if => lambda { |a| a[:street].blank? }
  accepts_nested_attributes_for :phone, :reject_if => lambda { |a| a[:phone_number].blank? }, :allow_destroy => true

  validates_associated :address, :phone, :position
  validates_presence_of :lname 
  validates_presence_of :fname 
  validates_presence_of :email 
  validates_presence_of :position_id

  def self.search(page)
    paginate  :per_page => 3,
              :page => page
  end
end

class RooftopsController < ApplicationController
  def show
    @rooftop = Rooftop.find(params[:id])
    @contacts = @rooftop.contacts.search(1)
  end
end

<div class='pagination'>
  <%= will_paginate contacts %>
</div>

这会创建/rooftops/1,我不确定如何强制它/rooftops/1/contacts

--------------------- EDIT ---------------------

我的路线是

resources :rooftops do
  resources :contacts
end

我想我知道我的问题在哪里。由于我的搜索功能在模型中。我从来没有碰到contacts控制器。我从rooftops控制器进行搜索,并从contacts视图中调用部分内容。我将展示我的观点。

<div id='contacts' style='margin-top: 20px; border-bottom: 1px solid lightgrey;'>
  <h4>Contacts <%= link_to "new", new_polymorphic_path([@rooftop, Contact]) %></h4>

 <%= render :partial => 'contacts/contacts', :locals => { :object_type => @rooftop, :layer => 1 } %>
</div>

这是实际的部分。正如您所看到的,它从未真正通过联系人控制器。这可能是我问题的根源吗?

<table>
 <tr>
  <th></th>
 </tr>
 <% @contacts.each do |contact| %>
 <tr>
  <td class='contact_mailer'>
   <%= link_to image_tag('icons/gray_light/mail_12x9.png'), "mailto:#{contact.email}" %>
  </td>
  <td>
   <div class='expandable layer_<%= layer %>' style='float: left'>
    <%= link_to contact.fname.titleize + ' ' + contact.lname.titleize, polymorphic_path([object_type, @contact]), :class => "contact_name" %>
      </div>
    </td>
    <td>
      <%= image_tag 'icons/blue/key_stroke_8x8.png' %>
  </td>
 </tr>
 <% end %>
</table>

<br />
<div class='pagination'>
  <%= will_paginate @contacts %>
</div>

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

有几个地方你可能会出错。也许您没有正确设置路线。 will_paginate来电应该在联系人视图中,它在那里吗?从你给出的片段中不清楚。

self.search模型中的Contact方法对我来说非常好奇,这应该在控制器中。有意义的是,搜索方法与Contact的控制有关。并将其作为实例方法。

路由rooftops/:id/contacts应该指向Contact控制器。你可能会检查是否是这样。

我想你需要这样的东西:

class Contact < ActiveRecord::Base
  # your model definition, validations
  # no self.search method here
  cattr_reader :per_page
  @@per_page = 3
end

class RooftopsController < ApplicationController
  # your RooftopsController methods
  # the show you listed should be in ContactsController
end

class ContactsController < ApplicationController
  def show
    # I guess you have contacts for Rooftop
    @contacts = Rooftop.find(params[:id]).contacts
    # you paginate the array of results
    @contacts.paginate(params[:page])
  end

## This is in the view of the Contacts#show
<div class='pagination'>
  <%= will_paginate contacts %>
</div>

您可能需要在数组上进行分页。这很简单,请参考this。希望这有帮助。