Błąd krytyczny Wywołanie funkcji członka dispatch () podczas wywoływania mojego bloku w magento 2


19

To jest mój plik bloku:

 <?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();

    }
   }

 }

Jeśli wywołam ten blok, pojawia się błąd

Błąd krytyczny PHP: Wywołanie funkcji członkowskiej dispatch () na null w /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php na linii 642, odnośnik : http: //magentodev.gworks .mobi / magento2 / customer / account / index /

z error.logpliku apache . dlaczego, napisz mi, jak rozwiązać ten problem.

Odpowiedzi:


38

Problem polega na tym, że twój konstruktor nie pasuje do konstruktora klasy nadrzędnej.

Aby to naprawić, musisz zaktualizować konstruktor:

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

Nie zapomnij opróżnić var/cachei var/generationpo zmianach.


1
Dziękuję Ci. Pomogło mi to w jednej z tych sytuacji: „Wiem, że o czymś zapomniałem, ale nie pamiętam, co”.
siliconrockstar
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.