Magento 2 StoreManagerInterface มีอยู่แล้วในบริบทวัตถุในการรวบรวม


15

ฉันได้รับข้อผิดพลาดนี้ในส่วนขยายของฉัน

PackageName \ ModuleName \ Block \ Enhanced การ
พึ่งพาที่ไม่ถูกต้องในคลาส PackageName \ ModuleName \ Block \ Enhanced ใน /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

@Marius haha ฉันยังพบว่าน่าสนใจเพื่อดูว่าผู้พูดภาษาอังกฤษที่ไม่ใช่เจ้าของภาษาสองคนอธิบายสิ่งเดียวกัน =)
Raphael ที่ Digital Pianism

@Marius and Raphael +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
)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.