Python3 ---Tornado의 쿠키
set_cookie(name, value, domain=None, expires=None, path='/', expires_days=None)
매개변수 설명:
예:
import tornado.web
import tornado.ioloop
import tornado.httpserver
import os
import pymysql
import time
from tornado.options import define, options
define("port", default=8001, help="run on the given port", type=int)
class IndexHandler(tornado.web.RequestHandler):
def get(self):
print(self.get_cookie("n1"))
print(self.get_cookie("n2"))
print(self.get_cookie("n3"))
print(self.get_cookie("n4"))
self.set_cookie("n1", "v1")
self.set_cookie("n2", "v2", path="/new", expires=time.strptime("2018-07-30 23:59:59", "%Y-%m-%d %H:%M:%S"))
self.set_cookie("n3", "v3", expires_days=20)
# time.mktime UTC
self.set_cookie("n4", "v4", expires=time.mktime(time.strptime("2018-07-30 23:59:59", "%Y-%m-%d %H:%M:%S")))
self.write("OK")
class Application(tornado.web.Application):
def __init__(self):
handlers = [
(r"/", IndexHandler),
(r"/new", IndexHandler),
]
settings = dict(
template_path=os.path.join(os.path.dirname(__file__), "templates"),
static_path=os.path.join(os.path.dirname(__file__), "statics"),
debug=True,
)
super(Application, self).__init__(handlers, **settings)
if __name__ == "__main__":
tornado.options.parse_command_line()
http_server = tornado.httpserver.HTTPServer(Application())
http_server.listen(options.port)
tornado.ioloop.IOLoop.instance().start()
2. 쿠키 획득:
get_cookie(name, default=None)
class IndexHandler(RequestHandler):
def get(self):
n3 = self.get_cookie("n3")
self.write(n3)
3. 명확한 쿠키:
clear_쿠키(name, path='/', domain=None): 이름이name이고domain과 path가 일치하는 쿠키를 삭제합니다.
clear_all_cookies(path='/', domain=None):domain과 path가 일치하는 모든 cookie를 삭제합니다.
class ClearOneCookieHandler(RequestHandler):
def get(self):
self.clear_cookie("n3")
self.write("OK")
class ClearAllCookieHandler(RequestHandler):
def get(self):
self.clear_all_cookies()
self.write("OK")
주의: 쿠키 제거 작업을 실행하면 브라우저의 쿠키를 즉시 삭제하는 것이 아니라 쿠키 값을 비우고 유효기간을 변경하여 효력을 상실합니다.진정한 쿠키 삭제는 브라우저가 정리합니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
#2_Raspberry Pi 3B+에서 LINE에 일기 예보 알림도쿄에 와서 갑자기 비가 오는 경우가 많습니다. "아침 제대로 일기 예보를 체크해 두면..."라고 후회하는 것이 자주. LINE에 매일 아침 일기 예보를 보내 주시면 좋지 않아? 라고 생각하고 만들어 보기로 했습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.