ruby-on-rails – 未初始化的常量ActionView :: CompiledTemplates :: BootstrapPagination

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 未初始化的常量ActionView :: CompiledTemplates :: BootstrapPagination前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经安装了will_paginate-bootstrap gem来使用bootstrap样式分页.在我看来,我有这个:
<%= will_paginate @mylist,renderer: BootstrapPagination::Rails %>

但它返回此错误

uninitialized constant ActionView::CompiledTemplates::BootstrapPagination

解决方法

如果您已成功捆绑所有宝石,那么它应该像这样工作.
<%= will_paginate @mylist,:renderer => BootstrapPagination::Rails %>

安装gem后请确保已重新启动服务器.

原文链接:https://www.f2er.com/ruby/266312.html

猜你在找的Ruby相关文章