ฉันกำลังดิ้นรนกับวีโอไอพี 2 ครั้ง ฉันสร้างไฟล์คอนโทรลเลอร์ด้านล่างเป็นรหัสตัวอย่าง
<?php
namespace vendor_name\module_name\Controller\SetGetSession;
use Magento\Framework\App\Action\Action;
class SetGetSession extends Action
{
protected $customerSession;
public function _construct(
\Magento\Customer\Model\Session $customerSession
) {
$this->customerSession = $customerSession;
}
public function execute()
{
}
}
ทุกคนสามารถช่วยฉันด้วยวิธีการกำหนดข้อมูลและดึงข้อมูลจากตัวแปรเซสชั่น?
ขอขอบคุณ.