will_paginate ajax 分页与思考 sphinx

发布于 2024-09-19 02:31:10 字数 545 浏览 4 评论 0原文

有没有人尝试过通过ajax对思考的狮身人面像结果集进行分页?

我在我的控制器操作中有这个:

@results = Model.search params[:query], :page => params[:page] || 1, :per_page => 1

在我的 application.js 中:

 $(".pagination a").live("click", function() {
   $.get(this.href, null, null, "script");
   return false;
 });

现在,我已经尝试过这个,这对于正常的活动记录分页是有效的,如下所示:

@results = Model.paginate(:page => params[:page] || 1, :per_page => 1)

但是如果我使用thinking-sphinx来获取记录,ajax分页会失败。我错过了什么吗?

Has anyone ever tried paginating a thinking sphinx result set thru ajax?

I have this is in my controller action:

@results = Model.search params[:query], :page => params[:page] || 1, :per_page => 1

and in my application.js:

 $(".pagination a").live("click", function() {
   $.get(this.href, null, null, "script");
   return false;
 });

Now, I have tried this and this works for normal active record pagination like so:

@results = Model.paginate(:page => params[:page] || 1, :per_page => 1)

But if I use thinking-sphinx for getting the records the ajax pagination fails. Am I missing something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

丘比特射中我 2024-09-26 02:31:10

我已经得到了这个。但对于下一个可能遇到此问题的人来说,您所要做的就是确保链接也传递查询的参数。

= will_paginate(@results, :params=>{"query"=> params[:query]})

I got this already. But for the next one who might encounter this problem, all you have to do is to make sure that the links also pass the params for the query.

= will_paginate(@results, :params=>{"query"=> params[:query]})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文