1
需要幫助瞭解爲什麼我不能在不使用ServiceManager的情況下查詢我的數據庫,或者是我做錯了。我的方法可能不被推薦,但你的答案會幫助我更好地理解框架。Zf2 TableGateway
我的模型如下:
namespace Album\Model;
use Zend\Db\TableGateway\TableGateway;
use Zend\Db\Adapter\Adapter;
class AlbumTable
{
public function getAll()
{
$configArray = ['driver' => 'Pdo_Mysql', 'database' => 'zf2tutorial', 'username' => 'root'];
$adapter = new Adapter($configArray);
$tableGateway = new TableGateway('Album', $adapter);
$resultSet = $tableGateway->select();
return $resultSet;
}
}
我的控制器:
namespace Album\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Album\Model\AlbumTable;
class AlbumController extends AbstractActionController
{
public function indexAction()
{
$rowset = new AlbumTable();
$rowset->getAll();
return new Viewmodel(array(
'rows' => $rowset
));
}
}
相應的視圖文件:
var_dump($this->rows)
// outputs: object(Album\Model\AlbumTable)[250].
感謝。
謝謝安德魯。 – Ori 2013-03-07 16:06:36