Magento 2 में ग्राहक सत्र डेटा कैसे सेट करें और प्राप्त करें
मैं Magento के 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() …