Does will pagination work with forms which have method=“POST”?

前端 未结 2 675
挽巷
挽巷 2021-01-28 04:40

I switched my advanced order form to POST from GET as the URI request became too large for browsers to handle. Everything works fine, with the exception of will pagaination. It

2条回答
  •  一整个雨季
    2021-01-28 05:02

    You can add a param to will_paginate

    https://github.com/mislav/will_paginate/wiki/API-documentation

    <%= will_paginate @orders['order_items'], :params => { :method => :post } %>
    

    If it doesn't work, set te complete controller and action to params.

提交回复
热议问题