Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以在 magento 中创建一个自定义会话,以将我的模块本地的数据存储在会话文件中,而不会影响全局命名空间。为此,我只需创建一个可扩展的模型,Mage_Core_Model_Session_Abstract但如何配置它?它与普通模型配置相同吗?它需要自己的资源吗?
Mage_Core_Model_Session_Abstract
您只需要在__construct()方法中初始化它,如下所示:
__construct()
public function __construct() { $this->init('namespace', 'optional_session_name'); }