我已经构建了一个自定义脚本,可以使用AJAX向wishlist添加和删除项目。添加产品不是问题,但我无法弄清楚如何删除项目。 Magento版本为1.5.1.0
。
脚本位于/scripts/
,如下所示:
include_once '../app/Mage.php';
Mage::app();
try{
$type = (!isset($_GET['type']))? 'add': $_GET['type'];
$id = (!isset($_GET['id']))? '': $_GET['id'];
$session = Mage::getSingleton('core/session', array('name'=>'frontend'));
$_customer = Mage::getSingleton('customer/session')->getCustomer();
if ($type != 'remove') $product = Mage::getModel('catalog/product')->load($id);
$wishlist = Mage::helper('wishlist')->getWishlist();
if ($id == '')
exit;
if ($type == 'add')
$wishlist->addNewItem($product);
elseif ($type == 'remove')
$wishlist->updateItem($id,null,array('qty' => 0));
$products = Mage::helper('wishlist')->getItemCount();
if ($type == 'add') $products++;
if ($type == 'remove') $products--;
$result = array(
'result' => 'success',
'type' => $type,
'products' => $products,
'id' => $id
);
echo json_encode($result);
}
catch (Exception $e)
{
$result = array(
'result' => 'error',
'message' => $e->getMessage()
);
echo json_encode($result);
}
因此,当我请求脚本“删除”为$type
且愿望清单项ID为$ id时,我收到以下错误:
Fatal error: Call to a member function getData() on a non-object in /[magento path]/app/code/core/Mage/Catalog/Helper/Product.php on line 389
当我查看updateItem()
中的函数/app/code/core/Mage/Wishlist/Model/Wishlist.php
时,它期望“buyRequest”,但我无法弄清楚它是什么。
答案 0 :(得分:3)
我没有时间调试你的代码出了什么问题,但使用删除实体的常规约定应该有效:
Mage::getModel('wishlist/item')->load($id)->delete();
答案 1 :(得分:1)
只需查看removeAction
的{{1}}即可。
您必须按其ID加载愿望清单项,然后才能调用Mage_Wishlist_IndexController
方法。
答案 2 :(得分:0)
我知道这个问题很老但是因为我遇到了与magento 1.7.0.2相同的问题,我想分享解决方案。
要使其工作,您需要使用方法updateItem,如下所示
$wishlist->updateItem($id, array('qty' => 10));
而不是
$wishlist->updateItem($id, null, array('qty' => 10));
您不能使用此方法将项目数量设置为0.除非您使用删除方法,否则它将自动将其设置为最小值。
答案 3 :(得分:0)
您好使用此代码删除具有customerid $productId
的客户的产品$customerId
的产品。
$itemCollection = Mage::getModel('wishlist/item')->getCollection()
->addCustomerIdFilter($customerId);
foreach($itemCollection as $item) {
if($item->getProduct()->getId() == $productId){
$item->delete();
}
}