1

我有以下表格:

每个都有自己的映射器:
Product_Model_DbTable_Product
Product_Model_DbTable_Category
Product_Model_DbTable_ProdCategRelation

我看过一些关于它是如何完成的 教程,但我仍然不明白。


这是我目前拥有的:

class Product_Model_DbTable_Product extends Zend_Db_Table_Abstract
{

    protected $_name = 'product';
    protected $_dependentTables = array('Product_Model_DbTable_ProdCategRelation');
}

class Product_Model_DbTable_Category extends Zend_Db_Table_Abstract
{

    protected $_name = 'category';
    protected $_dependentTables = array('Product_Model_DbTable_ProdCategRelation');
}

class Product_Model_DbTable_ProdCategRelation extends Zend_Db_Table_Abstract
{
    protected $_name = 'product_category';
    protected $_referenceMap = array(
        'Product' => array(
            'columns' => 'pid',
            'refTableClass' => 'Product_Model_DbTable_Product',
            'refColumns' => 'id'
        ),
        'Category' => array(
            'columns' => 'cid',
            'refTableClass' => 'Product_Model_DbTable_Category',
            'refColumns' => 'id'  
        )
    );
}

我的实验控制器代码(或多或少有效,但该方法似乎不正确;还不如回到普通的表连接):

public function indexAction()
{
    $productObj = new Product_Model_DbTable_Product;
    $categoryObj = new Product_Model_DbTable_Category();

    $product = $productObj->fetchRow('id = 1');
    $productRelation = $product->findDependentRowset('Product_Model_DbTable_ProdCategRelation', 'Product')->current();

    $category = $categoryObj->fetchRow('id = ' . $productRelation->cid);
    $categoryInfo = $category->findDependentRowset('Product_Model_DbTable_ProdCategRelation', 'Category')->current();
}

我是否可以仅通过实例化产品而不是整个产品来使用这些关系来获取产品的类别?

4

1 回答 1

1

为此,您可以使用findManyToManyRowset。因此,您的代码可能会转换为:

$product = $productObj->fetchRow('id = 1');
$categoryInfo = $product->findManyToManyRowset(
    'Product_Model_DbTable_Category',
    'Product_Model_DbTable_ProdCategRelation'
)->current();
于 2011-02-03T20:33:17.993 回答