これは私のブロックファイルです:
<?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 /
Apache error.log
ファイルから、なぜ、この問題を解決する方法を提案してください。