我知道您可以使用以下命令在Magento 1中设置配置数据:
Mage::getModel('core/config')->saveConfig('my/path/whatever', $value);
您可以使用以下命令在Magento 2中获取配置数据:
protected $_scopeConfig
public function __construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig) {
$this->_scopeConfig = $scopeConfig;
}
+
$this->_scopeConfig->getValue( 'path/of/config', \Magento\Store\Model\ScopeInterface::SCOPE_STORE );
但我不知道如何在Magento 2中保存配置数据