0

i'm building a component in joomla 2.5 In this component i need to get the display of other components (for example the body of an article). I have the url of these components, with get parameters.

I'm thinking of getting the whole page using the url and cUrl, but is there a better way? Thanks.

4

2 回答 2

0

您不需要按照您建议的方式抓取数据,这绝不应该这样做,尤其是当您需要的数据已经在本地存在时。您可以使用 Joomla 代码,如下所示:

$article = JTable::getInstance('content');
$article->load($article_id);
echo $article->get('fulltext');

只需将 $article_id 替换为文章的 ID。你可以用你想要的字段替换全文。

于 2012-12-03T16:48:15.920 回答
0

我找到了一个有用的教程。它仍然相当复杂(至少对我来说,因为 Joomla 没有明确支持在单个页面中加载多个组件)。

http://www.ducciogasparri.com/2012/04/15/joomla-loading-multiple-components-in-a-single-page/

于 2012-12-11T17:09:54.933 回答