如何自定义 will_paginate 链接库?
<%= will_paginate(@posts) %>
# will generate the links like this '<a href="/posts?page=n">a link</a>'
如果我想更改基于/contents
等的href该怎么办a link< /代码>?
好像没有这个选项,求助!
<%= will_paginate(@posts) %>
# will generate the links like this '<a href="/posts?page=n">a link</a>'
What should I do if I want to change the href base on /contents
, etc. <a href="/contents?page=n">a link</a>
?
It seems that there is no options for this , help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能必须编写自己的 LinkRenderer。请参阅这篇博文,以及 LinkRenderer 的代码。
简而言之:
在
environment.rb
中,您需要这样的内容:在
application_helper.rb
中You will probably have to write your own LinkRenderer. See this blog post, and the code for LinkRenderer.
Briefly:
in
environment.rb
you need something like this:in
application_helper.rb