นี่คือไฟล์บล็อกของฉัน:
<?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: เรียกใช้ฟังก์ชั่นสมาชิก () ใน null ใน /var/www/html/magento2/vendor/magento/framework/View/Element/AbstractBlock.php ที่บรรทัด 642, ผู้อ้างอิง: http: //magentodev.gworks .mobi / magento2 / ลูกค้า / บัญชี / index /
จากerror.log
ไฟล์apache ทำไมแนะนำฉันถึงวิธีการแก้ปัญหานี้