This commit is contained in:
yumoqing 2020-06-07 22:55:08 +08:00
parent 2e26d4539b
commit 22b766f5b8

View File

@ -68,10 +68,13 @@ class BaseProcessor:
await self.datahandle(request) await self.datahandle(request)
if self.retResponse is not None: if self.retResponse is not None:
return self.retResponse return self.retResponse
if type(self.content) == type({}) or isinstance(self.content,DictObject): elif type(self.content) == type({}) :
self.content = json.dumps(self.content, self.content = json.dumps(self.content,
indent=4) indent=4)
if type(self.content) == type([]): elif isinstance(self.content,DictObject):
self.content = json.dumps(self.content._kwargs,
indent=4)
elif type(self.content) == type([]):
self.content = json.dumps(self.content, self.content = json.dumps(self.content,
indent=4) indent=4)
self.setheaders() self.setheaders()