龙卷风set_secure_cookie能否到期时间戳?

时间:2015-05-25 04:11:28

标签: timestamp tornado

我检查龙卷风set_secure_cookie功能代码,它可以在expires_days中设置cookie,但我想知道它是否可以以时间戳形式设置到期。

例如:     self.set_secure_cookie(“cookie_name”,“cookie_value”,expires = timestamp)

/*
*  html5 doctor css reset | http://html5doctor.com/html-5-reset-stylesheet
*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}

有人可以回答我吗?

2 个答案:

答案 0 :(得分:0)

通过阅读docs and code,您可以在那里设置时间戳值。

答案 1 :(得分:0)

没有详细记录,但expires参数可以是tornado.httputil.format_timestamp接受的任何格式,其中包括秒 - 自 - 纪元时间戳和日期时间对象。