1. 程式人生 > >TypeError: the JSON object must be str, not 'bytes'

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’
改為

story_data = json.loads(self.request.body.decode('utf-8'))

就好了