我已经安装了will_paginate-bootstrap gem来使用bootstrap样式分页.在我看来,我有这个:
<%= will_paginate @mylist,renderer: BootstrapPagination::Rails %>
但它返回此错误
uninitialized constant ActionView::CompiledTemplates::BootstrapPagination
解决方法
如果您已成功捆绑所有宝石,那么它应该像这样工作.
<%= will_paginate @mylist,:renderer => BootstrapPagination::Rails %>
安装gem后请确保已重新启动服务器.