Tornado TypeError: the JSON object must be str, not 'bytes'
story_data = json.loads(self.request.body)
报错 TypeError: the JSON object must be str, not 'bytes'
属于编码问题
更改成
json.loads(self.request.body.decode('utf-8'))
story_data = json.loads(self.request.body)
报错 TypeError: the JSON object must be str, not 'bytes'
属于编码问题
更改成
json.loads(self.request.body.decode('utf-8'))