Commit 0dbe1b38 authored by lvshibao's avatar lvshibao

获取req信息

parent 1a6f7523
...@@ -14,9 +14,9 @@ def get_account_info(func): ...@@ -14,9 +14,9 @@ def get_account_info(func):
# info = requests.get('http://172.17.1.74:8248/getUserInfo', headers={ # info = requests.get('http://172.17.1.74:8248/getUserInfo', headers={
# 'Cookie': 'aiforce=a038baa0-9a23-45f6-8042-a01a2309f1a8; JSESSIONID=fef7de70-7157-4b62-abf3-6fe9d2357350; csrfToken=wFVUJX9rT2jyDderTzHKUjaq; EGG_SESS=pRumla5Jc0N4k1qJnqyfP0SIlONA60YZCFEMh2sO_ywQrldAhhiX4Y2exluQfYfm'}) # 'Cookie': 'aiforce=a038baa0-9a23-45f6-8042-a01a2309f1a8; JSESSIONID=fef7de70-7157-4b62-abf3-6fe9d2357350; csrfToken=wFVUJX9rT2jyDderTzHKUjaq; EGG_SESS=pRumla5Jc0N4k1qJnqyfP0SIlONA60YZCFEMh2sO_ywQrldAhhiX4Y2exluQfYfm'})
# print(info.json()) # print(info.json())
logger.info('req中的data为: ', req.DATA) logger.info('req中的data为: ', req.GET)
logger.info('req中的query_params为: ', req.query_params) # logger.info('req中的query_params为: ', req.query_params)
logger.info('req中的query_params为: ', req.parsers()) # logger.info('req中的query_params为: ', req.parsers())
return func(Request, *args, **kw) return func(Request, *args, **kw)
return account_info return account_info
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment