我有表单提交,我已经将此表单用于csrf。我单击2-3次提交按钮,其显示内容不允许执行您请求的操作。
我浏览了网络,发现扩展核心类可以解决此问题。但是并没有解决。请在这里帮助我-谢谢。
这是MY_Security(应用程序/核心)
class MY_Security extends CI_Security {
public function __construct() {
parent::__construct();
}
public function csrf_show_error() {
header('Location: ' . htmlspecialchars($_SERVER['REQUEST_URI']));
}
}
除此以外,还有其他过程吗?