我正在尝试使用Controller中的Zend Debug在Zend Framework中显示查询结果。但是Model中返回的“select”方法唯一的东西就是这样的对象(只有结果数,但没有de数据结果):
object(Zend\Db\ResultSet\ResultSet)#303 (8) {
["allowedReturnTypes":protected] => array(2) {
[0] => string(11) "arrayobject"
[1] => string(5) "array"
}
["arrayObjectPrototype":protected] => object(Grupos\Model\CategoriaGrupo)#288 (6) {
["id"] => NULL
["titulo"] => NULL
["img"] => NULL
["alt"] => NULL
["slug"] => NULL
["ativo"] => NULL
}
["returnType":protected] => string(11) "arrayobject"
["buffer":protected] => NULL
["count":protected] => int(17)
["dataSource":protected] => object(Zend\Db\Adapter\Driver\Pdo\Result)#302 (8) {
["statementMode":protected] => string(7) "forward"
["resource":protected] => object(PDOStatement)#294 (1) {
["queryString"] => string(49) "SELECT `grupo_categoria`.* FROM `grupo_categoria`"
}
["options":protected] => NULL
["currentComplete":protected] => bool(false)
["currentData":protected] => NULL
["position":protected] => int(-1)
["generatedValue":protected] => string(1) "0"
["rowCount":protected] => int(17)
}
["fieldCount":protected] => int(6)
["position":protected] => int(0)
}
如何看,不显示结果,只显示已创建的行数:17。
所有其他查询都完美无缺。所有这些都与表数据库和数据库权限相关。我将在这里放置Model.php,两个模型和控制器来向您展示:
Module.php
...
public function getServiceConfig()
{
return array(
'factories' => array(
'Grupos\Model\CategoriaGrupoTable' => function ($sm) {
$tableGateway = $sm->get('CategoriaGrupoTableGateway');
$table = new CategoriaGrupoTable($tableGateway);
return $table;
},
'CategoriaGrupoTableGateway' => function ($sm) {
$dbAdapter = $sm->get('Zend\Db\Adapter\Adapter');
$resultSetPrototype = new ResultSet();
$resultSetPrototype->setArrayObjectPrototype(new CategoriaGrupo());
return new TableGateway('grupo_categoria', $dbAdapter, null, $resultSetPrototype);
}
)
);
}
GruposController.php
class GruposController extends AbstractActionController
{
protected $categoriaGrupoTable;
public function getCategoriaGrupoTable()
{
if (! $this->categoriaGrupoTable) {
$sm = $this->getServiceLocator();
$this->categoriaGrupoTable = $sm->get('Grupos\Model\CategoriaGrupoTable');
}
return $this->categoriaGrupoTable;
}
public function categoriasAction()
{
// Define as configurações e conteúdos das páginas
$tituloPagina = $translator->translate("Editar Grupo");
$categorias = $this->getCategoriaGrupoTable()->listar();
Debug::dump($categorias);
die();
}
}
型号 - > CategoriaGrupoTable.php
<?php
namespace Grupos\Model;
use Zend\Db\TableGateway\TableGateway;
class CategoriaGrupoTable
{
protected $tableGateway;
function __construct(TableGateway $tableGateway)
{
$this->tableGateway = $tableGateway;
}
/**
* Método que lista todas as categorias ativas
*
* @return \Zend\Db\ResultSet\ResultSet
*/
public function listar()
{
return $this->tableGateway->select();
}
}
?>
型号 - &gt; CategoriaGrupo.php
<?php
namespace Grupos\Model;
class CategoriaGrupo
{
public $id;
public $titulo;
public $img;
public $alt;
public $slug;
public $ativo;
// Método que popula o objeto com dados vindos de uma array
public function exchangeArray($dados)
{
$this->id = (! empty($dados["id"])) ? $dados["id"] : null;
$this->titulo = (! empty($dados["titulo"])) ? $dados["titulo"] : "";
$this->img = (! empty($dados["img"])) ? $dados["img"] : "";
$this->alt = (! empty($dados["alt"])) ? $dados["alt"] : "";
$this->slug = (! empty($dados["slug"])) ? $dados["slug"] : "";
$this->titulo = (! empty($dados["ativo"])) ? 1 : 0;
}
// Esse método pegar o Objeto (que é a própria classe) e retornará ele como se fosse um array
public function getArrayCopy()
{
return get_object_vars($this);
}
}
?>
嗯..这是问题而且来源档案...如果有人可以给我一个灯,我将非常感激!我很抱歉我的英语。我正在尝试2周发现错误。谢谢。
答案 0 :(得分:0)
我建议你阅读zend framewrok 2的文档,以便更好地理解查询的工作方式。
现在为解决方案。下
模型 - &gt; CategoriaGrupoTable.php修改listar()函数
public function listar()
{
$result = $this->tableGateway->select();
return $result->toArray();
}
答案 1 :(得分:0)
感谢您的时间和帮助。我发现了问题:在表格中我在exchangeArray方法中减速两次“titulo”。这导致我的表的整个数据都带有null或空,除了slug ...谢谢。