我一直在为一些 findBy 使用实体而苦苦挣扎,我真的不明白出了什么问题。
我正在使用这两个类:
GPos_Model_Product :
/**
* @Entity
* @Table(name="Product")
*/
class GPos_Model_Product extends GPos_Doctrine_ActiveEntity {
/**
* @Id @Column(type="integer")
* @GeneratedValue
*/
protected $id;
/**
* @ManyToOne(targetEntity="GPos_Model_Store")
* @JoinColumn(name="store_id", referencedColumnName="id")
**/
protected $store;
}
GPos_Model_Store:
/**
* @Entity
* @Table(name="Store")
*/
class GPos_Model_Store extends GPos_Doctrine_ActiveEntity {
/**
* @Id @Column(type="integer")
* @GeneratedValue
*/
protected $id;
/** @Column(name="status", type="string", columnDefinition="enum('active', 'deleted')") */
protected $status = 'active';
}
注意:我已经删除了两个类中的无用字段以使其更具可读性
所以这就是问题所在:在我的一个控制器中,我试图检索链接到某个商店的所有产品:
public function indexAction() {
$this->_helper->getHelper('layout')->disableLayout();
$authNamespace = new Zend_Session_Namespace('Zend_Auth');
//get store's products list.
$store = GPos_Model_Store::find($authNamespace->store);
var_dump($store); //prints store successfully.
//next line throws an unusable exception talking about layout.phtml not found...
$products = GPos_Model_Product::findByStore($store->getId());
//give it to the view for the products list rendering.
var_dump($products);
$this->view->products = $products;
}
很奇怪,当我改用它时$products = GPos_Model_Product::findByStore($store);
,我没有得到任何例外,结果只是一个空数组。我在另一个控制器中使用了完全相同的方式(使用 getId())来处理其他两个具有相同关系并且运行良好的实体。
我检查了我的数据库,我用作参数的商店确实绑定到一些产品,这意味着结果是一个空数组也不正确。我应该检索一个包含 8 个产品的数组...
这是我的其他控制器的代码,它工作正常(再次缩小代码):
$user = GPos_Model_User::findOneByLogin($form->getValue('login'));
$contact = GPos_Model_Contact::findByUser($user->getId());
//these lines work perfectly and I'm receiving an array of `GPos_Model_Contact` entities...
这两对实体以完全相同的方式声明,所以我真的不明白......
谢谢你的帮助!