Magento 2 StoreManagerInterface sudah ada di objek konteks dalam kompilasi


15

Saya mendapatkan kesalahan ini di ekstensi saya.

PackageName \ ModuleName \ Block \ Ditingkatkan
Ketergantungan yang salah di kelas PackageName \ ModuleName \ Block \ Ditingkatkan di /var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.php \ Magento \ Store \ Model \ Store \ StoreManagerInterface sudah ada di dalam objek konteks

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

Jawaban:


12

Anda tidak perlu menyuntikkan \Magento\Store\Model\StoreManagerInterfacekonstruktor karena kelas induk sudah melakukannya.

Saya menganggap blok Anda meluas Magento\Framework\View\Element\Templateyang sudah memiliki kode berikut:

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

Dengan demikian Anda dapat mengganti kode Anda dengan:

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 ... terlambat 13 detik.
Marius

@Marius haha. Saya masih menemukan hal yang menarik untuk melihat bagaimana dua penutur bahasa Inggris bukan penutur asli menjelaskan hal yang sama =)
Raphael di Digital Pianism

@Marius dan Raphael +2. Sangat cepat.
Khoa TruongDinh

5

Anda tidak perlu menambahkan \Magento\Store\Model\StoreManagerInterface $storeManagersebagai ketergantungan ke kelas Anda.
Anda sudah memiliki akses ke implementasi StoreManagerInterfacedi dalam Magento\Framework\View\Element\Template\Contextkelas.
Lihat ini .

Jadi Anda dapat membuat konstruktor Anda terlihat seperti ini:

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

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

Dan Anda masih dapat mengakses storeManagervariabel anggota seperti ini $this->_storeManager.


5

Metode berikut tersedia di Contextobjek ( \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
)
Dengan menggunakan situs kami, Anda mengakui telah membaca dan memahami Kebijakan Cookie dan Kebijakan Privasi kami.
Licensed under cc by-sa 3.0 with attribution required.