未初始化的常量ActionView :: CompiledTemplates :: BootstrapPagination

Say*_*san 7 ruby-on-rails will-paginate twitter-bootstrap ruby-on-rails-4

我已经安装了will_paginate-bootstrap gem来使用bootstrap样式分页.在我看来,我有这个:

    <%= will_paginate @mylist, renderer: BootstrapPagination::Rails %> 
Run Code Online (Sandbox Code Playgroud)

但它返回此错误

    uninitialized constant ActionView::CompiledTemplates::BootstrapPagination
Run Code Online (Sandbox Code Playgroud)

Sab*_*osh 13

如果您已成功捆绑所有宝石,那么它应该像这样工作.

<%= will_paginate @mylist, :renderer => BootstrapPagination::Rails %>
Run Code Online (Sandbox Code Playgroud)

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

  • 重新启动服务器对我来说是这样。谢谢。 (2认同)