钩子 post_controller 不支持表单提交的疑问
本帖最后由 aszx0413 于 2018-3-10 12:54 编辑不多说,直接上代码:
[*]config.php 的 hooks 配置已开启
$config['enable_hooks'] = true;
[*]hooks.php 的代码
$hook['post_controller'] = function () {
// code here...
};
然后正常访问页面,会进入代码。
但当从页面中表单提交,例如 post 到 /ctrl/method,是不会进入 $hook['post_controller'] 这里面的代码。
页:
[1]