使用瓶子时, 我试图验证一个 cookie 没有被篡改 。 现在, 如果我改变 cookie 值, 它只会丢弃一个错误, 但是我要检查代码是_ valid( session[ user_ id] ), 如果不是的话, 重定向/ 重置 。
在#pocoo的某人说:
- actually, you could call SecureCookie.unserialize and catch the exception
- ah, it fails silently
- looks like you have to try unserializing it and check if you get an empty object from it
有没有人能进一步解释一下这个代码会是什么样子?