2

我正在尝试使用 will_paginate Gem 在同一页面(相同的控制器操作)上进行多个 Ajax 调用。到目前为止,我已经为每个实例变量提供了自己的 param_name,这样它们就不会使用 :page 的默认参数

示例控制器

@meats= Recipe.meat_recipes.paginate(:page => params[:meat_recipes], :per_page => 1)
@vegrecipes = Recipe.veg_recipes.paginate(:page => params[:veg_recipes], :per_page => 1)
@desserts = Recipe.dessert_recipes.paginate(:page => params[:dessert_recipes], :per_page => 1)

然后在视图中

 <%= will_paginate @meats,  :param_name => 'meat_recipes'  %> (repeat this for individual instance variables)

所以这部分很好。我正在做的是在像这样发出 AJAX 请求时加载部分内容

.js.erb 文件

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

所以目前我的肉实例变量工作正常。那么如何根据 params 进行 if 语句呢?

例如,我已经尝试过

<% if @meats %>
$('#meatRecipes').html('<%= escape_javascript(render partial: 'meatrecipes') %>');
$.setAjaxPagination();
<% end %>

<% if @vegrecipes %>
$('#vegRecipes').html('<%= escape_javascript(render partial: 'vegrecipes') %>');
$.setAjaxPagination();
<% end %>

也试过

<% if @meats[:param_name] == 'meat_recipes' %>
$('#meatRecipes').html('<%= escape_javascript(render partial: 'meatrecipes') %>');
$.setAjaxPagination();
<% end %>

<% if @vegrecipes[:param_name == 'veg_recipes' %>
$('#vegRecipes').html('<%= escape_javascript(render partial: 'vegrecipes') %>');
$.setAjaxPagination();
<% end %>

但这不起作用。所以我想我的问题是我用什么作为我的论点来确保为特定的分页部分调用正确的部分。

希望我已经正确解释了这一点

4

1 回答 1

4

好的,所以我需要将此解决方案归功于@karl,但这有效..除非有人有更好的方法?

 <% if params[:meat_recipes] %>
 $('#meatRecipes').html('<%= escape_javascript(render partial: 'meatrecipes') %>');
 $.setAjaxPagination();
 <% end %>

 <% if  params[:veg_recipes] %>
 $('#vegRecipes').html('<%= escape_javascript(render partial: 'vegeterianrecipes') %>');
 $.setAjaxPagination();
 <% end %>

 <% if  params[:dessert_recipes] %>
 $('#dessertRecipes').html('<%= escape_javascript(render partial: 'dessertrecipes') %>');
 $.setAjaxPagination();
于 2012-12-10T19:51:46.150 回答