作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我读到其他人遵循了 Endless Page Railscast 并将其修改为使用加载更多按钮。然而,当我尝试修改它时,我最终只是附加了相同的产品。换句话说,它仍然从 current_page 中提取。
当我点击“加载更多”div 时,我上传触发:
$("#products").append("<%= escape_javascript render( @products) %>");
在我的 Controller 中,我有
@products = Product.where(:created_at => 180.days.ago..Time.now).order(sort_column + " " + sort_direction).page(params[:page]).per_page(16)
我想知道我是否应该能够以某种方式使用 will_paginate 的 .next_page。
有人使用 Rails 3 和 jQuery 对 will_paginate 做过类似的事情吗?
最佳答案
尝试这样的事情
在产品 View 中
# Show link only if there are more than one page and pass page and sorting parameters
<% unless @products.total_pages < 2 %>
<%= link_to 'show_more', method_that_returns_products_path(:sort => sort_column, :direction => sort_direction, :page => 2), :remote => true, :id => 'show_more_link' %>
<% end %>
并在 js 响应中
$("#products").append("<%= escape_javascript render( @products) %>");
// Hide link if it is last page otherwise update link
<% if @products.total_pages == @products.current_page %>
$("#show_more_link").hide();
<% else %>
$("#show_more_link").attr("href", "<%= method_that_returns_products_path(:sort => sort_column, :direction => sort_direction, :page => (@products.current_page + 1)) %>");
<% end %>
关于jquery - will_paginate 使用 jQuery 在 Rails 3.1 中加载更多按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8378443/
我正在开发一个需要能够平均三个数字的 Facebook 应用程序。但是,它总是返回 0 作为答案。这是我的代码: $y = 100; $n = 250; $m = 300; $number = ($y
我只是无法弄清楚这一点,也找不到任何对我来说有意义的类似问题。我的问题:我从数据库中提取记录,并在我的网页上以每个面板 12 条的倍数显示它们。因此,我需要知道有多少个面板可以使用 JavaScrip
我是一名优秀的程序员,十分优秀!