Đây là Tệp Khối của tôi:
<?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();
}
}
}
Nếu tôi gọi khối này, tôi gặp lỗi
Lỗi nghiêm trọng của PHP: Gọi tới một hàm chức năng thành viên () trên null trong /var/www/html/magento2/vendor/magento/framework/View/Euity/AbaugeBlock.php trên dòng 642, tham chiếu: http: //magentodev.gworks .mobi / magento2 / khách hàng / tài khoản / chỉ mục /
từ error.log
tập tin apache ., tại sao, cố gắng giải quyết vấn đề này.