我从未使用过 Rails(只能回答我的问题),但我看到它在每个页面中都放置了 CSRF 令牌和表单。
我不明白为什么它meta
为此使用两个标签:
<meta name="csrf-token" content="<%= form_authenticity_token %>" />
<meta name="csrf-param" content="authenticity_token" />
为什么不只是 csrf-token 元数据?
<meta name="csrf-token" content="<%= form_authenticity_token %>" />
有什么用csrf-param
?