从authenticity_token表单生成的任何内容中删除不需要的div
这应该是一个简单的问题,但我就是找不到答案! 我的 Rail Forms 生成了一个我想要删除的 div
这是 Rails 为我生成的 div
<div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"/><input name="authenticity_token" type="hidden" value="Z6UAdFYt3v8d1lx4BNXq5td3OMJ223i+ruKM8Ldb+5s=" /></div>
我查看了一些预览问题,这些问题建议我应该
在代码中的位置和方式 使用 form_authenticity_token
我可以使用 form_authenticity_token 代替吗?
This should be an easy one but I just cant find the answer!
My Rail Forms generate a div that I want to get rid of
This is the div that rails generate for me
<div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="✓"/><input name="authenticity_token" type="hidden" value="Z6UAdFYt3v8d1lx4BNXq5td3OMJ223i+ruKM8Ldb+5s=" /></div>
I had a look to some previews questions that were suggesting I should use form_authenticity_token
Where and how in the code can I use form_authenticity_token instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用什么版本的 Rails?
我不知道你为什么要这样做。如果是 CSS 问题,你可以说得更具体一些。我从来不需要这样做。
然而......
在 3.0.9 中执行此操作的方法是创建一个初始化程序并添加以下代码:
What version of Rails are you using?
I don't know why you want to do this. If it's a CSS issue you can just be more specific. I've never needed to do this.
However…
The way to do it in 3.0.9 would be making an initializer and adding this code: