Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查购物车是否包含 Magento 中的任何名义(isRecurring)项目。
我找到了一个功能 isRecurring 但我不知道如何在购物车中使用此功能。任何人都可以知道任何其他代码(功能)来检查购物车中的名义物品吗?
提前致谢
我找到了对我有用的答案
$cart = Mage::getSingleton('checkout/cart'); $items = $cart->getItems(); foreach ($items as $item) { if($item->getProduct()->getIsRecurring()){ your code............. } }
希望这对某人有帮助