龙卷风 set_secure_cookie 可以过期时间戳吗?
Can tornado set_secure_cookie expires timestamp?
我查看了tornado set_secure_cookie功能代码,它可以在expires_days中设置cookie,但我想知道是否可以设置时间戳形式的过期时间。
例如:
self.set_secure_cookie("cookie_name", "cookie_value", 过期=时间戳)
timestamp is value like 1432527031.
有人可以回答我吗?
从阅读 docs and code 来看,您似乎无法在那里设置时间戳值。
它没有很好的记录,但 expires
参数可以是 tornado.httputil.format_timestamp 接受的任何格式,其中包括自纪元以来的秒数时间戳和日期时间对象。
我查看了tornado set_secure_cookie功能代码,它可以在expires_days中设置cookie,但我想知道是否可以设置时间戳形式的过期时间。
例如: self.set_secure_cookie("cookie_name", "cookie_value", 过期=时间戳)
timestamp is value like 1432527031.
有人可以回答我吗?
从阅读 docs and code 来看,您似乎无法在那里设置时间戳值。
它没有很好的记录,但 expires
参数可以是 tornado.httputil.format_timestamp 接受的任何格式,其中包括自纪元以来的秒数时间戳和日期时间对象。