cakephp 3.x如何在模型中使用session?

时间:2016-02-01 10:08:37

标签: cakephp cakephp-3.1

我们正在开发购物车应用程序。我们的应用程序是在用户登录时将购物车项目与登录用户合并。所以,请你帮我解决如何在模型中使用Session

1 个答案:

答案 0 :(得分:3)

一种解决方法是使用网络会话对象

// In Table class include this line at the top
use Cake\Network\Session;

public function getSession(){
   $session = new Session();
   debug($session->read()); die;
} 

我不知道这是否是最佳解决方案。其他的做法在这里讨论Session accessibility in model and behavior