Magento 2 StoreManagerInterface, derleme sırasında bağlam nesnesinde zaten var


15

Uzantımda bu hatayı alıyorum.

PackageName \ ModuleName \ Block \ Enhanced
Sınıfta yanlış bağımlılık PackageName \ ModuleName \ Block \ /var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.php \ Magento \ Store \ Model \ StoreManagerInterface içinde zaten var bağlam nesnesi

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

Yanıtlar:


12

\Magento\Store\Model\StoreManagerInterfaceÜst sınıf zaten bunu yaptığı için kurucunuza enjekte etmeniz gerekmez .

Ben senin blok Magento\Framework\View\Element\Templatezaten aşağıdaki kodu olan uzanır varsayalım :

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

Böylece kodunuzu aşağıdakilerle değiştirebilirsiniz:

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
Ah ... 13 saniye çok geç.
Marius

@Marius haha. Hala anadili İngilizce olmayan iki konuşmacının aynı şeyi nasıl açıkladığını görmek ilginç görünüyor =)
Raphael at Digital Pianism

@Marius ve Raphael +2. Çok hızlı bir şekilde.
Khoa TruongDinh

5

\Magento\Store\Model\StoreManagerInterface $storeManagersınıfınıza bağımlılık olarak eklemenize gerek yoktur .
Zaten bir inplementation erişimi StoreManagerInterfacede Magento\Framework\View\Element\Template\Contextsınıfta.
Şuna bakın .

Böylece kurucunuzu şu şekilde yapabilirsiniz:

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

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

Ve yine de storeManagerböyle üye değişkenlere erişebileceksiniz $this->_storeManager.


5

ContextObject ( \Magento\Framework\View\Element\Template\Context) içinde aşağıdaki yöntemler kullanılabilir

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
)
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.