Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要知道,如果 joomla 对组件或视图中的冒号有任何意义?
这个命名约定中有什么东西吗?
冒号仅在“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')在代码中提取的数字部分。
JRequest::getInt('id')