使用 Code Igniter 制作面包屑的最佳方法是什么?
我想知道使用 Code Igniter 制作面包屑的最佳方法是什么。
1:使用 URL 检索字符串
示例:$this->uri->segment(2)
2:您知道另一种方法吗?
我真的很想听听你的意见
I wonder what a best way to make a breadcrumb with Code Igniter.
1 : Retrieve the strings with URL
example : $this->uri->segment(2)
2 : Do you know another way ?
I'd really like to have your opinion
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
URL 段的使用取决于您的 URL 结构 - 并不总是 1:1 匹配。
http://forum.codeigniter.com/thread-25372.html?highlight= 137949
Using URL segments is specific to how you have your URL structured - there is not always a 1:1 match.
http://forum.codeigniter.com/thread-25372.html?highlight=137949
如果您想要 100% 匹配并且易于自定义,请使用此:
https://github.com/nobuti/Codeigniter -breadcrumbs
Breadcrumbs 是一个小型库,可帮助您使用 CodeIgniter 管理 HTML 面包屑。
If you want 100% Match and easy to customize use this one :
https://github.com/nobuti/Codeigniter-breadcrumbs
Breadcrumbs is an small library that helps your manage HTML breadcrumbs with CodeIgniter.
buti 的 Codeigniter-breadcrumbs 库存在一些问题,特别是“unshift”方法以及它如何使用 Codeigniter 的“site_url”方法,而不是为您提供使用“base_url”推送到面包屑的选项。你可以查看我的 fork,因为 buti 的仓库不再被维护(自 2012 年起): https:// github.com/abud/Codeigniter-breadcrumbs
There are some problems with buti's Codeigniter-breadcrumbs library, particularly with the "unshift" method and how it uses Codeigniter's "site_url" method instead of giving you the option to push to breadcrumbs using "base_url". You can check out my fork, since buti's repo is no longer being maintained (since 2012): https://github.com/aburd/Codeigniter-breadcrumbs
请按照以下教程 - 单击此处在 codeigniter 中生成面包屑。
Please the following tutorial - click here to generate the breadcrumb in codeigniter.