Magento 2 StoreManagerInterface вже існує в контекстному об'єкті при компіляції


15

Я отримую цю помилку в своєму розширенні.

PackageName \ ModuleName \ Block \ Enhanced
Неправильна залежність у класі PackageName \ ModuleName \ Block \ Enhanced in /var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.php \ Magento \ Store \ Model \ StoreManagerInterface вже існує в об'єкт контексту

 public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,
    \Magento\Store\Model\StoreManagerInterface $storeManager,        
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
    $this->_storeManager = $storeManager;      
}

Відповіді:


12

Вам не потрібно вводити \Magento\Store\Model\StoreManagerInterfaceв конструктор, тому що це вже робить батьківський клас.

Я припускаю, що ваш блок розширюється, у Magento\Framework\View\Element\Templateякому вже є такий код:

protected $_storeManager;

public function __construct(Template\Context $context, array $data = [])
{
    $this->validator = $context->getValidator();
    $this->resolver = $context->getResolver();
    $this->_filesystem = $context->getFilesystem();
    $this->templateEnginePool = $context->getEnginePool();
    $this->_storeManager = $context->getStoreManager();
    $this->_appState = $context->getAppState();
    $this->templateContext = $this;
    $this->pageConfig = $context->getPageConfig();
    parent::__construct($context, $data);
}

Таким чином, ви можете замінити свій код на:

public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,   
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
}

3
Аа ... 13 секунд пізно.
Маріус

@Marius haha. Мені все ж цікаво подивитися, як двоє носіїв англійської мови пояснюють одне і те ж =)
Рафаель у Digital Pianism

@Марій і Рафаель +2. Так швидко.
Khoa TruongDinh

5

вам не потрібно додавати \Magento\Store\Model\StoreManagerInterface $storeManagerяк залежність до свого класу.
Ви вже маєте доступ до втілення StoreManagerInterfaceв Magento\Framework\View\Element\Template\Contextкласі.
Дивіться це .

Таким чином, ви можете зробити ваш конструктор таким чином:

public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Catalog\Model\Session $catalogSession,
    array $data = []

)
{
    parent::__construct($context, $data);
    $this->_catalogSession = $catalogSession;
}

І ви все одно зможете отримати доступ до такої storeManagerзмінної члена $this->_storeManager.


5

Наступні методи доступні в Contextоб’єкті ( \Magento\Framework\View\Element\Template\Context)

print_r(get_class_methods($context))

Array
(
    [0] => __construct
    [1] => getResolver
    [2] => getValidator
    [3] => getFilesystem
    [4] => getLogger
    [5] => getViewFileSystem
    [6] => getEnginePool
    [7] => getAppState
    [8] => getStoreManager
    [9] => getPageConfig
    [10] => getCache
    [11] => getDesignPackage
    [12] => getEventManager
    [13] => getLayout
    [14] => getRequest
    [15] => getSession
    [16] => getSidResolver
    [17] => getScopeConfig
    [18] => getInlineTranslation
    [19] => getUrlBuilder
    [20] => getAssetRepository
    [21] => getViewConfig
    [22] => getCacheState
    [23] => getEscaper
    [24] => getFilterManager
    [25] => getLocaleDate
)
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.