Codeigniter 分页类 - 如何从 URL 中删除尾部斜杠
我注意到 CI 的分页类中存在以下行为:
我的初始页面(用作 $config['base_url']
):
http://www.example.com/forum
当我分页到第 2 页时(per_page = 10,offset = 10,total_rows) = 100):
http://www.example.com/forum/10
当我返回到第 1 页时:
http://www.example.com/forum/ <=====trailing slash
这个尾部斜杠弄乱了页面中的几个 Ajax 命令。
知道如何让它消失吗?
I've noticed the following behavior in CI's pagination class:
My initial page (used as $config['base_url']
):
http://www.example.com/forum
When I paginate to page 2 (per_page = 10, offset = 10, total_rows = 100):
http://www.example.com/forum/10
When I go back to Page 1:
http://www.example.com/forum/ <=====trailing slash
This trailing slash is messing up several Ajax commands in the page.
Any idea how to make it go away?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 trim 来实现:
You can use trim for that: