我正在制作购物车(购物车模型)。其中一个受保护的属性是“_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
如果我……在购物车中重新声明它,我肯定会得到一个。