使用 Kaminari gem 进行 Ajax 分页
在最近的railscast之后,我正在使用kaminari gem 在我的 网站 中,我想要进行 ajax 分页
kaminari 文档说: 帮助器支持 Rails 3 unobtrusive Ajax。
有人有关于如何执行此操作的任何提示或教程吗?我正在使用jquery,rails 3等。我想我的application.js文件中需要一些东西来监听分页导航中的按钮
如果有人需要代码我会发布它
After a recent railscast I'm using the kaminari gem in my website and I want to do ajax pagination
The kaminari docs say: the helper supports Rails 3 unobtrusive Ajax.
Does anyone have any hints or tutorials on how to do this? I'm using jquery, rails 3 etc. I guess I need something in my application.js file that listens to the buttons in the pagination nav
If anyone needs code I will post it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢您使用雷。
我刚刚使用 Kaminari 和 jQuery 创建了一个简短的示例项目,因为我相信这是向您展示实际代码的最佳方式。 git log 告诉你的不仅仅是言语!
那么,您能看一下“ajax”分支上的提交吗? https://github.com/amatsuda/kaminari_example/commits/ajax
希望这有帮助!
Thank you for using Kaminari.
I just created a brief sample project using Kaminari and jQuery, as I believe this is the best way to show you the actual code. git log tells you more than words!
So, could you take a look at the commits here on "ajax" branch? https://github.com/amatsuda/kaminari_example/commits/ajax
Hope this helps!
我按照下面的简单文章做了它,一切都运行得很好
Ajax 分页雷
I did it according to the following simple article and everything works pretty well
Ajax pagination with kaminari