Tôi đang vật lộn với magento 2 phiên. Tôi đã tạo tập tin điều khiển dưới đây dưới dạng mã mẫu.
<?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()
{
}
}
Bất cứ ai có thể xin vui lòng giúp tôi làm thế nào để gán dữ liệu và lấy nó từ biến phiên?
Cảm ơn bạn.