Questions tagged «interface»

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); 我将对象管理器用于临时/快速用途,会将对象管理器转换为构造函数指令。 任何人都可以帮助我解决这个问题。

3
什么是Magento2中的IdentityInterface
我看到Magento 2中的许多模型都实现了Magento\Framework\DataObject\IdentityInterface。 该接口有一个称为getIdentities 的方法return [self::CACHE_TAG . '_' . $this->getId()];。该方法的实现通常返回。 可以在此处找到示例 这是做什么用的?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.