我可以删除愿望清单中的所有项目,但是如何从愿望清单中删除单个项目
以下是删除愿望清单中所有项目的代码:
public function removeWishList($customer_id,$product_id)
{
$itemCollection = Mage::getModel('wishlist/item')->getCollection()
->addCustomerIdFilter($customer_id);
foreach($itemCollection as $item) {
$item->delete();
//Mage::getModel('wishlist/item')->load($product_id)->delete();
}
}