添加到購物車產品我想插入到結帳/購物車一些捆綁產品與兒童項目。 我正在使用此代碼,但它只適用於簡單的產品。Magento 2從代碼
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$product = $objectManager->get('Magento\Catalog\Model\Product')->load(703);
$listBlock = $objectManager->get('\Magento\Catalog\Block\Product\ListProduct');
$addToCartUrl = $listBlock->getAddToCartUrl($product);
echo $addToCartUrl;
我也用這個建議
$的ObjectManager = \ Magento的\框架\軟件\的ObjectManager ::的getInstance();
$ product = $ this-> productRepository-> getById(「703」);
$ magento = array(82 =>「103」,82 =>「112」); $''=> $ qty); $ product-> getId(),'bundle_options'=> array(1 => $ magento),'qty'=> $ qty);
$ this-> cart-> addProduct($ _ product,$ par);
$ this-> cart-> save();
但仍然無法正常工作。有人能幫我嗎? 謝謝
你找到確切的解決方案? –