快鹿后端API接口文档
curl --location --globoff 'http://${{address}}:8080/comment/selectAllCommentByPostId?postId=&userId='{
"code": "200",
"msg": "评论查询成功",
"data": [
{
"commentId": "2",
"name": "张三",
"date": "2010-07-15",
"contentText": "有意思的见解",
"url": "http://192.168.128.139:8080/static/logo.png",
"likeNum": 2,
"isLike": true,
"replyList": [
{
"replyId": "2",
"name": "张三",
"date": "2021-05-13",
"contentText": "同意你的观点",
"likeNum": 2,
"url": "http://192.168.128.139:8080/static/logo.png",
"isLike": true,
"reply": {
"name": "张三",
"contentStr": "有意思的见解"
}
},
{
"replyId": "8",
"name": "张三",
"date": "1971-09-25",
"contentText": "我同意这个观点",
"likeNum": 0,
"url": "http://192.168.128.139:8080/static/logo.png",
"isLike": false,
"reply": {
"name": "张三",
"contentStr": "同意你的观点"
}
}
]
}
]
}