Joomla - 将获取变量添加到菜单项链接

发布于 2024-10-11 19:43:30 字数 125 浏览 6 评论 0原文

我制作了一个自定义组件,并尝试使菜单项链接添加 &id=x,但是我似乎找不到任何有关如何进行此工作的文档。该字段是只读的,但即便如此,我仍然希望它是自动化的(类似于添加文章的工作方式)。它将从参数字段中获取值。任何帮助表示赞赏!

I made a custom component and I'm trying to make the menu item link add &id=x, however I can't seem to find any documentation on how to make this work. The field is read only, but even then I would still want it to be automated (similar to how adding an article works). It will be taking a value from a parameter field. Any help is appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

递刀给你 2024-10-18 19:43:30

在这个帖子的底部找到了答案。

http://forum.joomla.org/viewtopic.php?p=2250321

同样重要的是要注意,要添加到链接的参数需要在参数之外,如下所示。

<state>
    <name>Standard Page Layout</name>
    <url>
        <param name="id" type="text" default="0" label="Page ID" description="The ID of the page to view." />
    </url>
    <params>
    </params>
</state>

以下是不正确的。

<state>
    <name>Standard Page Layout</name>
    <params>
    <url>
        <param name="id" type="text" default="0" label="Page ID" description="The ID of the page to view." />
    </url>
    </params>
</state>

Found the answer in this thread towards the bottom.

http://forum.joomla.org/viewtopic.php?p=2250321

It's also important to note that the params to be added to the link need to be out of the params, like so.

<state>
    <name>Standard Page Layout</name>
    <url>
        <param name="id" type="text" default="0" label="Page ID" description="The ID of the page to view." />
    </url>
    <params>
    </params>
</state>

The following is incorrect.

<state>
    <name>Standard Page Layout</name>
    <params>
    <url>
        <param name="id" type="text" default="0" label="Page ID" description="The ID of the page to view." />
    </url>
    </params>
</state>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文