gpt4 book ai didi

magento - 在 magento2 中以编程方式创建简单的产品

转载 作者:行者123 更新时间:2023-12-01 16:46:41 25 4
gpt4 key购买 nike

Magento-2:

如何从 magento-2 外部以编程方式创建一个简单的产品

最佳答案

我不知道你所说的外部是什么意思,但我能够使用 magerun2 创建一个产品。这就是我走了多远:

# bin/n98-magerun2.phar dev:console

$productFactory = $objectManager->create("\Magento\Catalog\Model\ProductFactory");

// this needs to be set to avoid exception:
// Magento\Framework\Exception\SessionException with message 'Area code not set: Area code must be set before starting a session.'
// I don't know why ...
$appState = $objectManager->get("Magento\Framework\App\State")
$appState->setAreaCode("de")

$product = $productFactory->create()

$product->setName("FooBar")
$product->setName("123")
$product->setAttributeSetId(15)

$product->save()

关于magento - 在 magento2 中以编程方式创建简单的产品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34022858/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com