Magento 2 StoreManagerInterfaceはコンパイルのコンテキストオブジェクトに既に存在します


15

拡張機能でこのエラーが発生しています。

PackageName \ ModuleName \ Block \ Enhanced
/var/www/html/app/code/PackageName/ModuleName/Block/Enhanced.phpのクラスPackageName \ ModuleName \ Block \ Enhancedの依存関係が正しくありません\ 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秒遅すぎます。
マリウス

@マリウス・ハハ。2人の英語を母国語としない2人の話者が同じことをどのように説明しているのかを見るのはまだ面白いと思います=)
Digital PianismのRaphael

@マリウスとラファエル+2。そんなに早く。
コアチュオンディン

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

Contextobject(\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.