Joomla中如何通过文章ID获取文章文本?

问题描述 投票:0回答:5

我想通过从 joomla 模板传递文章 ID 来获取文章文本。

php joomla
5个回答
17
投票

简单,为您提供使用 post/get 发送文章 id 并使用变量“id”作为其编号:

$articleId = JRequest::getInt('id');
$db =& JFactory::getDBO();

$sql = "SELECT fulltext FROM #__content WHERE id = ".intval($articleId);
$db->setQuery($sql);
$fullArticle = $db->loadResult();

if(!strlen(trim($fullArticle))) $fullArticle = "Article is empty ";

编辑:从任何地方获取articleId:

$articleId = (JRequest::getVar('option')==='com_content' && JRequest::getVar('view')==='article')? JRequest::getInt('id') : 0;

7
投票

尝试这个技巧:

$article = JControllerLegacy::getInstance('Content')->getModel('Article')->getItem($articleId);
echo $article->introtext;

7
投票

在 Joomla 2.5 中通过文章 ID 获取文章文本(根据文档 3 也可以工作)插件:

$article =& JTable::getInstance("content");
$article->load($id);
$content = '<h3>'. $article->get("title").'</h3>';
$content .= $article->get("introtext"); // introtext and/or fulltext

文章 id 是从组件/插件参数中获取的,例如:

  1. 从自己的组件内部:

    $app = JFactory::getApplication();
    $params = $app->getParams();
    $param = $params->get('terms_article_id');
    
  2. 来自其他组件:

    $params = JComponentHelper::getParams('com_mycom');
    $id = $params->get('terms_article_id');
    
  3. 从模板的php文件中获取模块参数:

    $module = JModuleHelper::getModule('mod_mymodule');
    $params = new JRegistry($module->params); // or $mymoduleParams if few used
    $id = (int) $headLineParams['count'];
    

4
投票

Joomla 有从 sql 表获取内容的默认脚本。

这里文章(#__content)

获取文章 ID:

$articleId = (JRequest::getVar('option')==='com_content' && JRequest::getVar('view')==='article')? JRequest::getInt('id') : 0;

获取文章内容:

$table_plan         = & JTable::getInstance('Content', 'JTable');
$table_plan_return  = $table_plan->load(array('id'=>$articleId));
echo "<pre>";print_r($table_plan->introtext);echo "</pre>";

0
投票

在 Joomla 4/5 中:

use Joomla\CMS\Factory;

$app = Factory::getApplication();
$factory = $app->bootComponent('com_content')->getMVCFactory();
$model = $factory->createModel('Article');
$article = $model->getItem($id);

echo $article->introtext; // or fulltext
© www.soinside.com 2019 - 2024. All rights reserved.