story_data = json.loads(self.request.body)
提示TypeError: the JSON object must be str, not ‘bytes’
改为
story_data = json.loads(self.request.body.decode('utf-8'))
就好了
story_data = json.loads(self.request.body)
提示TypeError: the JSON object must be str, not ‘bytes’
改为
story_data = json.loads(self.request.body.decode('utf-8'))
就好了