2

我正在制作购物车(购物车模型)。其中一个受保护的属性是“_items”,它包含一个 Product 对象数组。它们(产品)都存储在数据库中以填充会话(使用 ZF、Zend_Session_SaveHandler_DbTable() 等)。

public function addItem(Model_Product $product, $qty)
{
    $qty = (int) $qty;
    $pId = $product->getId();

    if ($qty > 0) {
        $this->_items[$pId] = array('product' => $product, 'qty' => $qty);
    } else {
        // if the quantity is zero (or less), remove item from stack
        unset($this->_items[$pId]);
    }

    // add new info to session
    $this->persist();
}

在控制器中,我使用 ProductMapper 从 DB 中获取一个 Product obj 并将其提供给“addItem()”:

    $product1 = $prodMapper->getProductByName('cap');
    $this->_cart->addItem($product1, 2);

getProductByName()返回一个新的填充 Model_Product 对象。


我通常得到

Please ensure that the class definition "Model_Product" of the object you are trying to operate on was loaded _before_ ...

错误消息,会话转储显然显示

['__PHP_Incomplete_Class_Name'] => 'Model_Product'


我知道“在序列化之前声明类”。我的问题是:我如何声明 Product 类addItem(),如果它首先被注入(第一个参数)?新声明(如)不会new Model_Product()覆盖参数(原始对象)addItem()吗?我必须再次在 Cart 模型中声明它吗?

此外,Cannot redeclare class Model_Product如果我……在购物车中重新声明它,我肯定会得到一个。

4

1 回答 1

4

在 ZF 的引导程序中,会话在自动加载之前启动。

    /**
     * Make XXX_* classes available
     */
    protected function _initAutoloaders()
    {
        $loader = new Zend_Application_Module_Autoloader(array(
                    'namespace' => 'XXX',
                    'basePath' => APPLICATION_PATH
                ));
    }

    public function _initSession()
    {
        $config = $this->_config->custom->session;

        /**
         * For other settings, see the link below:
         * http://framework.zend.com/manual/en/zend.session.global_session_management.html
         */
        $sessionOptions = array(
            'name'             => $config->name,
            'gc_maxlifetime'   => $config->ttl,
            'use_only_cookies' => $config->onlyCookies,
//            'strict'           => true,
//            'path'             => '/',
        );

        // store session info in DB
        $sessDbConfig = array(
            'name'           => 'xxx_session',
            'primary'        => 'id',
            'modifiedColumn' => 'modified',
            'dataColumn'     => 'data',
            'lifetimeColumn' => 'lifetime'
        );

        Zend_Session::setOptions($sessionOptions);
        Zend_Session::setSaveHandler(new Zend_Session_SaveHandler_DbTable($sessDbConfig));
        Zend_Session::start();
    }

当我遇到我所说的错误时,方法声明是相反的:_initSession()首先是,然后_initAutoloaders()- 这就是 ZF 处理它们的确切顺序。

我将进行更多测试,但这似乎可行(并且合乎逻辑)。感谢您的所有建议。

于 2011-05-05T16:46:52.173 回答