TypeError: the JSON object must be str, not 'bytes'
story_data = json.loads(self.request.body)
1
提示TypeError: the JSON object must be str, not ‘bytes’
改为
story_data = json.loads(self.request.body.decode('utf-8'))
1
就好了
转载
2018-09-16 14:13:07 ·
7628 阅读 ·
0 评论