Joomla中状态变量的用法是什么?以及此代码中$model-> setState的用法是什么(代码来自Joomla的mod_articles_popular模块)?
$model = JModelLegacy::getInstance('Articles', 'ContentModel', array('ignore_request' => true));
// Set application parameters in model
$app = JFactory::getApplication();
$appParams = $app->getParams();
$model->setState('params', $appParams);
// Set the filters based on the module params
$model->setState('list.start', 0);
最佳答案 setState方法用于过滤数据的模型,可以在 here上读取详细信息.函数语法和参数列表可以是 here.
此方法的主要目的是使用参数筛选结果集.在你的情况下,它的模块参数可以找到示例帖子here.
希望现在清楚.