Önemli Hata Magento 2'deki Bloğumu çağırırken üye işlev dispatch () çağrısı


19

Bu benim Blok Dosyam:

 <?php

 namespace ChennaiBox\Mymail\Block\Mail;

 class MailContent extends \Magento\Framework\View\Element\Template
 {
 protected $_objectManager;

 protected $customerSession;

 public function __construct(
    \Magento\Customer\Model\Session $customerSession,  
    \Magento\Framework\ObjectManagerInterface $objectManager
 ) {
    $this->customerSession = $customerSession;
    $this->_objectManager = $objectManager;
  }

 public function mymailData()
 {
try{

     if ($this->customerSession->isLoggedIn()) {
     $cutomerEmail    =(string)$this->customerSession->getCustomer()->getEmail();

     echo $cutomerEmail;

      else{
            $this->_redirect('customer/account/login/');
          }
   }catch (Exception $e) {

        $e->getMessage();

    }
   }

 }

Bu bloğu çağırırsam hata alıyorum

PHP Önemli hata: 642 satırındaki /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php öğesinde null değerinde bir üye işlev dağıtımı () çağrısı, başvuru : http: //magentodev.gworks .mobi / magento2 / müşteri / hesap / index /

apache error.logdosyasından., neden, bana bu sorunun nasıl çözüleceğini söyleyin.

Yanıtlar:


38

Sorun yapıcı üst sınıf yapıcı ile eşleşmiyor olmasıdır.

Bunu düzeltmek için kurucunuzu güncellemeniz gerekir:

public function __construct(
    \Magento\Framework\View\Element\Template\Context $context,
    \Magento\Customer\Model\Session $customerSession,  
    \Magento\Framework\ObjectManagerInterface $objectManager,
    array $data = []
 ) {
    parent::__construct($context, $data);
    $this->customerSession = $customerSession;
    $this->_objectManager = $objectManager;
  }

Değişikliklerinizi var/cacheve var/generationsonrasında yıkamayı unutmayın .


1
Teşekkür ederim. Bu bana 'Bir şeyi unuttuğumu biliyorum ama ne olduğunu hatırlayamıyorum' durumlarından biriyle yardımcı oldu.
siliconrockstar
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.