Joomla中如何通过文章ID获取文章文本?
我想通过从 joomla 模板传递文章 ID 来获取文章文本。
I want to get article text by passing article ID from the joomla template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想通过从 joomla 模板传递文章 ID 来获取文章文本。
I want to get article text by passing article ID from the joomla template.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
简单,为您提供使用 post/get 发送文章 id 并使用变量“id”作为其编号:
编辑:从任何地方获取articleId:
Simple, providing you sending an article id with post/get and using variable "id" as its number:
EDIT: to get articleId from anywhere:
尝试这个技术:
try this technique:
在 Joomla 2.5 中通过文章 ID 获取文章文本(3 也可以根据文档工作)插件:
文章 ID 是从组件/插件参数中获取的,例如:
从自己的组件内部:
从其他组件:
从模板的 php 文件获取模块参数:
Get article text by article ID in Joomla 2.5 (3 will work also according docs) plugins:
And article id is got from component/plugin parameters for example:
From inside own component:
From other component:
Get Module Parameter from template's php file:
Joomla 有用于从 sql 表获取内容的默认脚本。
此处文章 (#__content)
获取文章 ID:
获取文章内容:
Joomla has the default script for getting content from sql table.
Here article (#__content)
To Get Article Id:
To get Article content:
在 Joomla 4/5 中:
In Joomla 4/5: