이것은 내 차단 파일입니다.
<?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();
}
}
}
이 블록을 호출하면 오류가 발생합니다
PHP 치명적 오류 : 642 행의 /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php에있는 null의 멤버 함수 dispatch () 호출, 참조 자 : http : //magentodev.gworks .mobi / magento2 / customer / account / index /
아파치 error.log
파일에서., 왜,이 문제를 해결하는 방법을 제안하십시오.