Errore irreversibile Chiama un dispatch di funzione membro () mentre chiama il mio blocco in magento 2


19

Questo è il mio file di blocco:

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

    }
   }

 }

Se chiamo questo blocco ottengo un errore

Errore irreversibile PHP: chiamata a un invio di funzioni membro () su null in /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php sulla riga 642, referer: http: //magentodev.gworks .mobi / magento2 / cliente / account / index /

dal error.logfile apache ., perché, suggeriscimi come risolvere questo problema.

Risposte:


38

Il problema è che il costruttore non corrisponde al costruttore della classe genitore.

Per risolvere il problema, devi aggiornare il costruttore:

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

Non dimenticare di svuotare il var/cachee var/generationdopo le modifiche.


1
Grazie. Questo mi ha aiutato con una di quelle situazioni "So che sto dimenticando qualcosa ma non ricordo quali" situazioni.
siliconrockstar,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.