-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
invalid csrf token #1475
Comments
额 这个提交是完全html的 没有js |
form 里面加一个 或者使用 我们在 |
如果是完全的前后端分离,前端模板不归 egg 管,是两个域名的话,那就不是 可以看下 csrf 的文档:https://eggjs.org/zh-cn/core/security.html#安全威胁-csrf-的防范 |
"那就不是 csrf 的范畴了 " 这是不是指 cors下 csrf没有必要? |
cors情况下会做origin判断,不需要走csrf逻辑,csrf需要前后端配合的 |
感谢Thanks♪(・ω・)ノ |
@jtyjty99999 cors配置了。还是会走csrf的,会返回"message": "missing csrf token" |
您好,情况是这样的.
因为不是把前端放在服务端渲染,所以文档当中的 _csrf={{ ctx.csrf }} 是没办法使用,
在完全前后端分离项目中,前端通过/post接口提交数据,出现 "invalid csrf token" 文档没有相关处理案例.
前端代码:
The text was updated successfully, but these errors were encountered: