Joomla URL 中使用冒号的意义
我需要知道,joomla 是否对组件或视图中的冒号有任何意义?
这个命名约定有什么东西吗?
I need to know, if joomla gives any significance to a colon in within component or view?
Is there something in this naming convention?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
冒号仅用在“id”参数中,以将数字 id 与用于 SEF URL 的 slug 分隔开。拥有景观和组件名称不应使用任何冒号。
例如:
非 sef URL - /index.php?option=com_content&view=article&id=45:my-article-title
Sef URL - /my-article-title.html
另外,在实际使用 id 时,您应该只使用数字部分,可以在代码中使用
JRequest::getInt('id')
提取数字部分。The colon is only used in the 'id' parameter to separate the numeric id from the slug used for SEF URLs. With view & component names you should not use any colons.
Eg:
Non-sef URL - /index.php?option=com_content&view=article&id=45:my-article-title
Sef URL - /my-article-title.html
Also when actually using the id, you should only use the numeric part, which can be extracted using
JRequest::getInt('id')
in your code.