0

我试图用 will_paginate gem 实现 Ajax 调用,我发现这个指南http://ramblinglabs.com/blog/2011/11/rails-3-1-will_paginate-and-ajax这似乎是一个简单的解决方案,虽然它包括我不熟悉的咖啡脚本

我的代码如下

我的观点

<div class="container">
 <div class="row">
  <div id="userRecipes">
   <%= render partial: 'userrecipes' %>
 </div>
</div><!--/row-->

我的部分(用户食谱)

 <% @recipes.each do |r| %>
  <div class="span3">
   <div class="thumbnail">
    <%= image_tag r.avatar.url(:myrecipes) %>
   </div>
   <h4><%= link_to r.dish_name, r %></h4>
   <hr>
    <p><%= truncate r.description, :length => 90 %></p>
    <p><%= link_to "Edit Recipe", edit_recipe_path(r.id) %></p>
    <p><%= link_to "Delete Recipe", recipe_path(r.id), :confirm => "Are you sure?", :method => :delete %></p>
    <p><%= link_to "Add to favorites",  {:controller => 'favourites', :action => 'create', :recipe_id => r.id}, {:method => :post } %></p>
   </div><!--/span3-->
   <% end %>
   <%= will_paginate @recipes %>

userrecipes.js.erb 文件

$('#userRecipes').html('<%= escape_javascript(render partial: 'userrecipes') %>');
$.setAjaxPagination();

咖啡脚本

$ ->
$.setAjaxPagination = ->
$('.pagination a').click (event) ->
  event.preventDefault()
  loading = $ '<div id="loading" style="display: none;"><span><img src="/assets/loading.gif" alt="cargando..."/></span></div>'
  $('.other_images').prepend loading
  loading.fadeIn()
  $.ajax type: 'GET', url: $(@).attr('href'), dataType: 'script', success: (-> loading.fadeOut -> loading.remove())
  false

  $.setAjaxPagination()

当我单击下一个锚标记以显示下一组结果时,页面保持原样并且没有新内容出现

使用控制台查看是否有任何错误时,我可以看到任何错误,输出为

GET http://localhost:3000/my_recipes?page=2&_=1355055997639

我在这里错过了什么吗?

此外,在控制台中检查响应时,它还显示正在加载要加载的新配方,但视图中没有发生任何事情

任何指针表示赞赏

谢谢

4

2 回答 2

1

will_paginate 创建的链接是 html 链接...

使用以下代码

 $('.pagination a').attr('data-remote', 'true');

向他们添加数据远程真实属性,以便他们js向服务器发出请求......

于 2012-12-09T17:19:28.707 回答
0

您应该将其添加到 js.erb 文件中。

$('.pagination a').attr('data-remote', 'true');

这应该有效。

于 2014-03-12T13:07:02.973 回答