3
致命错误:无法在Magento 2中实例化接口?
作为在Magento 2中以编程方式创建捆绑产品的一部分,我遇到了错误。甚至我删除了var / cache和generation。 这可能是一个重复的问题,但没有一个答案可解决此问题。 致命错误:无法在第73行的\ ObjectManager \ Factory \ Dynamic \ Developer.php中实例化接口Magento \ Catalog \ Api \ Data \ ProductExtensionInterface 下面的代码用作链接的参考 $productExtension = $objectManager->create(\Magento\Catalog\Api\Data\ProductExtensionInterface::class); $option = $objectManager->create(\Magento\Bundle\Api\Data\OptionInterface::class); $option->setTitle('Size'); $option->setType('radio'); $option->setRequired(true); $option->setPosition(1); //$option->setProductLinks($links); $productExtension->setBundleOptions([$option]); $_product->setExtensionAttributes($productExtension); 我将对象管理器用于临时/快速用途,会将对象管理器转换为构造函数指令。 任何人都可以帮助我解决这个问题。