分页无法正常工作 - will_paginate,bootstrap4

时间:2017-07-10 13:47:45

标签: ruby-on-rails twitter-bootstrap bootstrap-4 will-paginate

我是Rails的新手。尝试在我的项目中添加will_paginate,按照说明并相应地添加配置。最后它工作并显示页码。

1。)问题在于,当它显示页码和下一页选项时,它不包括数字之间的空格。

enter image description here

enter image description here

2。)有没有办法使用带引导程序4的will_paginate bootstrap? bkz因为我知道那个人提到他不再为那颗宝石提供支持了。

3 个答案:

答案 0 :(得分:2)

  

有没有办法使用带引导程序4的will_paginate bootstrap? bkz因为我知道那个人提到他不再为那颗宝石提供支持了。

以下是will_paginate will_paginate-bootstrap4

bootstrap 4支持

答案 1 :(得分:1)

您遇到的问题与Ruby / Rails完全无关:它只是一个CSS问题。 will_paginate不会对您的分页部分的样式做出任何假设,只是输出无样式的HTML标记。那么你有责任根据自己的喜好来设计它 - 例如和Bootstrap一样,就像你提到的那样。

通常,我建议使用Kaminari而不是will_paginate:我认为分页解决方案使用常规模板而不是使用辅助方法呈现所有HTML更有意义。但这只是我使用will_paginate十多年后的意见,而Kaminari几乎是在6年半前出现之后。

答案 2 :(得分:0)

因为你可以看到你的引导程序4正在运行的数字,你只需要制作CSS样式以使这些分页链接更漂亮,这里是源css for will_paginate

自定义下面的视图是sample或will_paginate scss文件 你可以在app / stylesheets / will_paginate.scss中创建一个scss文件并将代码放在下面

.digg_pagination {
  background: #FFFFFF; 
  font-size: 1.2em;
  cursor: default;
  /* self-clearing method: */ }
  .digg_pagination a, .digg_pagination span, .digg_pagination em {
    padding: 0.2em 0.5em;
    display: block;
    float: left;
    margin-right: 1px; }
  .digg_pagination .disabled {
    color: #999999;
    border: 1px solid #dddddd; }
  .digg_pagination .current {
    font-style: normal;
    font-weight: bold;
    background: #2e6ab1;
    color: white;
    border: 1px solid #2e6ab1; }
  .digg_pagination a {
    text-decoration: none;
    color: #105cb6;
    border: 1px solid #9aafe5; }
    .digg_pagination a:hover, .digg_pagination a:focus {
      color: #000033;
      border-color: #000033; }
  .digg_pagination .page_info {
    background: #2e6ab1;
    color: white;
    padding: 0.4em 0.6em;
    width: 22em;
    margin-bottom: 0.3em;
    text-align: center; }
    .digg_pagination .page_info b {
      color: #000033;
      background: #6aa6ed;
      padding: 0.1em 0.25em; }
  .digg_pagination:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }
  * html .digg_pagination {
    height: 1%; }
  *:first-child + html .digg_pagination {
    overflow: hidden; 
}