Request Forgery Protection
防止 - 跨站请求伪造。
请求伪造保护。
什么伪造?
跨站请求伪造(CSRF)。
怎么保护?
生成字符串,放 session 里,请求过来时要校验。
类方法:
方法里调用了:
等内容,使用举例:
protect_from_forgery
可选参数 :only、:except、:with 和 :prepend
当请求未证实,可选择怎么处理。可选:
实例方法:
当请求未证实,会使用 handle_unverified_request
来处理。 对应上面的 Exception、Reset Session、Null Session.
最后更新于