jquery ui 对话框和 csrf 保护
我正在使用 jquery ui 对话框
来显示表单。不幸的是,此函数清除了我表单中带有 csrf token
的隐藏输入。我是否可以以某种方式强制对话框不清除此字段,或者我是否必须将此令牌存储在某处并自己设置正确的字段?
I am using jquery ui dialog
to display form. Unfortunately, this function clears hidden input with csrf token
inside my form. Can I somehow force dialog not to clear this field or do I have to store this token somewhere and set the proper field myself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是理想的情况,但为什么不禁用相关视图的 CSRF 保护呢?或者您在这种对话框中是否有大量表单?
或者,为什么不使用一些 JS 来抓取令牌,将其停放在 DOM 中的其他位置,然后重写有问题的函数,以便在所有其他活动完成后将令牌输入克隆回其原始位置?
Non-ideal situation, but why don't you disable CSRF protection for the view in question? Or do you have loads of forms in this kind of dialog?
Alternatively, why not have some JS that scrapes the token, parks it elsewhere in the DOM and then you override the problematic function to clone the token input back to its original place once all other activity is done?