我是zend框架的新手,正在学习中。我想知道我们如何在 zend 框架中获取表的全部数据并将其显示在屏幕上。我看了很多教程,但无法理解这背后的逻辑。
如果有人可以给我关于这个的小教程,那将非常有帮助。
我正在使用这些类
模型
Application_Model_DbTable_Form extends Zend_Db_Table_Abstract{
protected $_name = 'register';
protected $_primary = 'firstName';
}
class Application_Model_Sign {
private $_dbTable;
public function __construct() {
$this->_dbTable = new Application_Model_DbTable_Form();
}
}
控制器
public function outAction() {
//action body
}
看法
<html>
<body>
<table>
<tr>
<th>First Name</th>
<th>Middle Name</th>
<th>Last Name</th>
<th>Gender</th>
<th>Job Type</th>
</tr>
</table>
</body>
</html>