Magento 2 StoreManagerInterface już istnieje w obiekcie kontekstu w kompilacji


15

Otrzymuję ten błąd w moim rozszerzeniu.

PackageName \ ModuleName \ Block \ Enhanced
Niepoprawna zależność w klasie PackageName \ ModuleName \ Block \ Enhanced w /var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.php \ Magento \ Store \ Model \ StoreManagerInterface już istnieje w obiekt kontekstowy

 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;      
}

Odpowiedzi:


12

Nie musisz wprowadzać \Magento\Store\Model\StoreManagerInterfacekonstruktora, ponieważ klasa macierzysta już to robi.

Zakładam, że twój blok się rozszerza, Magento\Framework\View\Element\Templatektóry ma już następujący kod:

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);
}

W ten sposób możesz zastąpić swój kod:

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
Ach ... 13 sekund za późno.
Marius

@Marius haha. Wciąż interesuje mnie to, jak dwoje obcokrajowców mówiących po angielsku to samo =)
Raphael z Digital Pianism

@Marius and Raphael +2. Tak szybko.
Khoa TruongDinh

5

nie musisz dodawać \Magento\Store\Model\StoreManagerInterface $storeManagerjako zależności do swojej klasy.
Masz już dostęp do uzupełnienia StoreManagerInterfacew Magento\Framework\View\Element\Template\Contextklasie.
Zobacz to .

Możesz więc sprawić, by Twój konstruktor wyglądał tak:

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

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

I nadal będziesz mieć dostęp do storeManagertakiej zmiennej członka $this->_storeManager.


5

W Contextobject ( \Magento\Framework\View\Element\Template\Context) dostępne są następujące metody

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
)
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.