def get(self, id): """??????""" comment = Comment.query.get(id) if comment is None: return {'message': '?????'}, 233 return comment.__json__(), 200