Joomla:自定义组件中的链接
我正在开发我的第一个 Joomla 组件,但无法理解如何插入链接来编辑组件中的项目。
假设我想列出一个项目并添加一个链接来编辑它。我不确定是否可以用普通 HTML 编写链接,尽管这没有多大意义,如果您进行任何更改或使用 SEF url,如何确保链接正确。
那么基本上,在组件中创建指向不同任务的链接的格式是什么?
I am developing my first Joomla component and am having trouble understanding how to insert a link to edit a item in my component.
Let's say I wanted to list an item and add a link to edit it. I'm not sure if I can just write a link with normal HTML, although that doesn't make so much sense could how could you make sure the link is correct if you make any changes or use SEF urls.
So basically what is the format for creating a link to a different task in your component?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每当在组件中创建链接时,请记住始终通过 JRoute Joomla 函数传递它:
这将确保当您为 Joomla 打开 SEF url 时,URL 将转换为其 SEF 对应项。请注意,如果您没有为组件开发 router.php 文件,您的组件 URL 将不会被转换。
Whenever making links in your component remember to always pass it through the JRoute Joomla function:
This will ensure that when you turn on SEF urls for Joomla that the URLs will be converted to their SEF counterparts. Please note that your component URLs will not be converted if you do not develop a router.php file for your component.