我会尽量简单......
我有两个实体:Pds和Specialite
以下是两个DbTable类:
class Application_Model_DbTable_Specialite extends Zend_Db_Table_Abstract
{
/**
* @var $_name : Nom de la table dans la BDD
* @var $_primary : Nom de la clé primaire de la table
* @var $_schema : Nom de la BDD
* @var $_adapter : Allias de la BDD dans le registre de Zend (défini dans le Bootstrap)
*/
protected $_name = 'ps_specialite';
protected $_primary = 'ps_spe_id';
protected $_schema = 'basename';
protected $_adapter = 'db_1';
protected $_referenceMap = array(
'Pds' => array(
'columns' => 'numprat_id',
'refTableClass' => 'Pds',
'refColumns' => 'id'
)
);
}
class Application_Model_DbTable_Pds extends Zend_Db_Table_Abstract
{
/**
* @var $_name : Nom de la table dans la BDD
* @var $_primary : Nom de la clé primaire de la table
* @var $_schema : Nom de la BDD
* @var $_adapter : Allias de la BDD dans le registre de Zend (défini dans le Bootstrap)
*/
protected $_name = 'ps_praticiens';
protected $_primary = 'numprat_id';
protected $_schema = 'basename';
protected $_adapter = 'db_1';
protected $_dependentTables = array('Specialite');
}
以下是两个型号:
class Application_Model_Specialite extends Zend_Db_Table_Row_Abstract {
protected $_id;
protected $_id_pds;
protected $_principal;
public function __construct(array $options = null){}
public function __set($name, $value){}
public function __get($name){}
public function setOptions(array $options){}
public function setId($id){}
public function getId(){}
public function setIdPds($id_pds){}
public function getIdPds(){}
public function setPrincipal($principal){}
public function getPrincipal(){} }
class Application_Model_Pds extends Zend_Db_Table_Row_Abstract {
protected $_id;
protected $_nom;
protected $_nom_pro;
protected $_prenom;
[ ... same contruction as Specialite ... ]
}
我的PdsMapper.php:
class Application_Model_PdsMapper { protected $_dbTable;
public function setDbTable($dbTable)
{
if (is_string($dbTable)) {
$dbTable = new $dbTable();
}
if (!$dbTable instanceof Zend_Db_Table_Abstract) {
throw new Exception('Invalid table data gateway provided');
}
$this->_dbTable = $dbTable;
return $this;
}
public function getDbTable()
{
if (null === $this->_dbTable) {
$this->setDbTable('Application_Model_DbTable_Pds');
}
return $this->_dbTable;
}
public function save(Application_Model_Pds $pds){}
public function find($id, Application_Model_Pds $pds)
{
$result = $this->getDbTable()->find($id);
if (0 == count($result)) {
return;
}
$row = $result->current();
$pds->setId($row->id)
->setNom($row->nom)
->setPrenom($row->prenom);
return $pds;
}
public function fetchAll(){} }
Pds和Specialite之间的联系是:
我想获得PDS的专家。这是我的控制器中的索引操作:
public function indexAction(){
$o_mapper = new Application_Model_PdsMapper();
$pds = $o_mapper->find('69000001', new Application_Model_Pds());
$pds_69000001 = $pds->current();
$specialiteByPds = $pds_69000001->findDependentRowset('Specialite');
$this->view->pds = $pds;
$this->view->specialite = $specialiteByPds;
}
但应用程序告诉我,当前()方法无法识别......我希望自昨天开始工作,但我不知道问题出在哪里......
提前致谢
答案 0 :(得分:0)
首先看一下http://akrabat.com/zend-framework/on-models-in-a-zend-framework-application/
所以你错误地做了几件事。
第一个Application_Model_Pds
扩展Zend_Db_Table_Row_Abstract
,它没有current
方法。 (只有Zend_Db_Table_Rowset_Abstract
才有)
告诉Application_Model_DbTable_Pds
使用哪个$_rowClass
:
class Application_Model_DbTable_Pds extends Zend_Db_Table_Abstract
{
...
protected $_rowClass = 'Application_Model_Pds';
}
通过这种方式,您无需将其传递给映射器:
public function find($id)
{
$result = $this->getDbTable()->find($id);
if (0 == count($result)) {
// better return null or throw exception?
return;
}
return $result->current();
}
此外,您不需要db字段的属性。应使用db。
中的名称自动创建它们class Application_Model_Pds extends Zend_Db_Table_Row_Abstract
{
public function setId($id)
{
$this->id = (int)$id;
}
public function getId()
{
return $this->id;
}
...
}
在控制器中:
public function indexAction()
{
$pds = $o_mapper->find('69000001');
$specialiteByPds = $pds->findDependentRowset('Application_Model_DbTable_Specialite');
$this->view->pds = $pds;
$this->view->specialite = $specialiteByPds;
}
注意:未经测试!而且我不确定这些关系是否有效。有关详细信息,请查看here。
我个人更喜欢拥有像here这样的独立模型类。您似乎试图将此概念与Zend_Db_Table_Row_Abstract
作为模型概念混合使用。