Joomla:将参数从文章传递到模块

发布于 2024-11-27 03:08:33 字数 74 浏览 1 评论 0原文

我是 Joomla 的新手。我正在开发一个动态模块,它将显示与显示该模块的文章相关的数据。是否可以?如果是,怎么办?任何帮助表示赞赏。

I am new to Joomla. I am developing a dynamic module which will display data relevant to the article with which the module is being displayed. Is it possible? If yes, how? Any help is appreciated.

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

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

发布评论

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

评论(1

对你再特殊 2024-12-04 03:08:33

你到底在说什么参数?我认为所有参数都可以使用文章 ID 来获取。并且文章 ID 总是可以从 GET 中检索到。您可以使用这样的代码:

if(JRequest::getVar('option')=='com_content' && JRequest::getVar('view')=='article')
{
    $article_id=JRequest::getVar('id');
    // then operate with ID.
}

如果我错了,请指定您的需求。

我希望这会有所帮助。

What parameters exactly are you talking about? I think all parameters could be gotten using article ID. And article ID always could be retieved from GET. You could use code like this:

if(JRequest::getVar('option')=='com_content' && JRequest::getVar('view')=='article')
{
    $article_id=JRequest::getVar('id');
    // then operate with ID.
}

If I'm wrong please specify your needs.

I hope it will be helpfull.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文