def list_comment_by_post_id():
    req = request.form
    post_id = req.get('postId')
    comments = Comment.list_comment_by_post_id(post_id)
    return jsonify(status='200', comments=comments)