如果请求不在客户帐户中,我想取消设置会话密钥。 magento中是否有任何事件调用每个动作的predispatch。我将在方法内添加动作名称检查。只需要知道事件名称会在每个动作的预捕发上触发
答案 0 :(得分:2)
您可以使用以下代码:
<events>
<controller_action_predispatch>
<observers>
<controller_action_before>
<class>dispatcher/observer</class>
<method>hookToControllerActionPreDispatch</method>
</controller_action_before>
</observers>
</controller_action_predispatch>
</events>