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()
{
}
}
誰でもデータを割り当ててセッション変数から取得する方法を教えてくれますか?
ありがとうございました。