大家好,我在joomla 2.5中为后端做了一个组件,但我在执行sql查询时遇到了问题,我的变量是空的,所以它什么都不显示。
我还有其他文件和文件,但这里是我问题的重要部分。
首先在我的controller.php中,我有这个内部管理文件
class BusquedaController extends JController
{
protected $default_view= 'restaurantes';
public function display(){
parent::display();
}
}
在我的模型文件中,我有restaurante.php
class BusquedaModelRestaurante extends JModelList{
function getListaRestaurantes(){
$db= JFactory::getDBO();
$sql= "SELECT * FROM #__restaurantes";
$db->setQuery($sql);
return $db->loadObjectList();
}
}
在我的控制器文件中我有这个
class BusquedaControllerRestaurantes extends JControllerAdmin
{
public function getModel($name = 'Restaurante', $prefix = 'BusquedaModel', $config = array('ignore_request' => true))
{
$model = parent::getModel($name, $prefix, $config);
return $model;
}
function listado(){
$firephp->log('hola');
$view=& $this->getView('restaurantes', 'html');
$model= $this->getModel("restaurante");
$listaMensajes= $model->getListaRestaurantes();
$view->assignRef('resList', $listaMensajes);
$view->display();
}
}
最后,在我的视图文件中,我有一个tmpl文件,其中包含default.php,显示了一个表
foreach ($this->resList as $item):
$checked=JHTML::_('grid.id', $n, $item->id); ?>
<tr>
<td><?php echo $checked; ?></td>
<td><?php echo $item->id; ?></td>
<td><?php echo $item->nombre; ?></td>
<td><?php echo $item->direccion; ?></td>
<td><?php echo $item->telefono; ?></td>
<td><?php echo $item->web; ?></td>
<td><?php echo $item->tipo; ?></td>
<td><?php echo $item->zona; ?></td>
<td><?php echo $item->metro; ?></td>
</tr>
<?php
但是元素reslist是空的,我不知道我的组件是否做得好!!,有人知道在joomla 2.5 中做一个组件的教程或东西
谢谢!
尝试在组件的开头添加error_reporting(E_ALL),它有望向您展示您做错了什么。
如果这没有帮助通过简单的
print_r($db->loadObjectList());
jexit();
查看查询在getListaRestaurantes()方法中返回的内容
附言:在JModels中,您可以使用$this->_db来获取对JDatabase对象的引用(而不是JFactory::getDBO())
试试这个,在控制器中将$listaMensajes更改为$this->resList
$this->resList=$model->getListaRestaurantes();
抛出运行时异常
try
{
$db->setQuery($query);
$result = $db->loadResult(); // If it fails, it will throw a RuntimeException
}
catch (RuntimeException $e)
{
throw new Exception($e->getMessage());
}
也在控制器中声明一个变量为受保护的
protected $resList;
将值分配给像这样的变量
$this->resList = $model->getListaRestaurantes();
看看我们的Joomla组件创建者。我想你会发现它很有用。
我建议尽可能坚持MVC框架,并使用getItems()等。只需复制com_weblinks正在做的事情。或者更好的是,让组件创建者为您完成所有工作。