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.
当我提交时,我会收到以下错误。
我已经加载了 CSRF 组件。
让我知道为什么会出现这个错误。
谢谢
根据您同时使用的堆栈跟踪,CSRF 中间件(请参阅src/Application.php)和 CSRF 组件(请参阅src/Controller/AppController.php) - 您应该只使用其中一个!该组件已弃用,因此最好使用中间件。
src/Application.php
src/Controller/AppController.php
如果您都启用了,那么将首先调用 CSRF 中间件,在验证提交的令牌后,它将从请求数据中取消设置,因此 CSRF 组件中的后续令牌检查将失败并出现您看到的错误.
也可以看看