Merge branch 'master' of github.com:yumoqing/ahserver

master
yumoqing 2023-06-30 14:46:32 +08:00
commit 5e4a158f11
2 changed files with 10 additions and 1 deletions

View File

@ -112,7 +112,11 @@ class ProcessorResource(AppLogger, StaticResource,Url2File):
pass
if reader is None:
md = await request.post()
if md == {}:
if request.query:
return multiDict2Dict(request.query)
ns = multiDict2Dict(md)
print(f'{ns=} reader is None, {request.query=}')
return ns
ns = {}
while 1:
@ -142,8 +146,8 @@ class ProcessorResource(AppLogger, StaticResource,Url2File):
print_exc()
print('-----------except out ------------')
break;
# print(f'getPostData():{ns=}')
# showcallstack()
print(f'getPostData():{ns=}')
return ns
async def _handle(self,request:Request) -> StreamResponse:

5
change.log 100644
View File

@ -0,0 +1,5 @@
# 2023-06-18
change permission check to a single function:checkUserPermission for auth_api.py
# 2023-06-22
fix bug for getPostData to support post data in request.query