文档
测试

文章评论列表

GET
/api/mp/article/quertAllArticleComment

请求头

参数名
类型
描述
必填
token
token
必填

请求参数

参数名
类型
描述
必填
articleId
文章id
必填

响应参数

参数名
类型
描述
必填
msg
string
示例:success
必填
code
int
示例:0
必填
data
array
数据列表
必填
id
int
评论id 示例:4
必填
userId
int
评论用户id 示例:88
必填
userName
string
评论用户名 示例:刘硕
必填
userAvatar
string
评论用户头像 示例:https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI9021BNB7O3xE1DHRosQmZLRVAhGP9vEvYibxP2Aw8XPPaIVlF85iaP1QQcrMtYn7OKicicav51gxNCw/132
必填
content
string
评论内容 示例:还可以
必填
replyCount
int
回复数 示例:3
必填
praseCount
int
点赞数 示例:10
必填
praseState
boolean
登录用户关于该文章的点赞状态(true:已点赞 false:未点赞) 示例:false
必填
createTime
int
发布时间 示例:1600678767000
必填
commentReplyList
array
评论回复列表 数据列表
必填
id
int
评论回复id 示例:3
必填
userId
int
评论回复用户id 示例:53
必填
userName
string
评论回复用户名 示例:站长1
必填
replyUserId
int
被回复人id(如:回复张三,此处即为张三的id) 示例:88
必填
replyUserName
string
被回复人用户名 示例:刘硕
必填
content
string
回复内容 示例:嘿嘿嘿
必填
praseCount
int
点赞数 示例:0
必填
praseState
boolean
登录用户关于该文章的点赞状态(true:已点赞 false:未点赞) 示例:false
必填
createTime
int
发布时间 示例:1600831523000
必填

说明 / 示例

{ "msg": "success", "code": 0, "data": [ { "id": 4, "userId": 88, "userName": "刘硕", "userAvatar": "https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI9021BNB7O3xE1DHRosQmZLRVAhGP9vEvYibxP2Aw8XPPaIVlF85iaP1QQcrMtYn7OKicicav51gxNCw/132", "content": "还可以", "replyCount": 3, "praseCount": 10, "praseState": false, "createTime": 1600678767000, "commentReplyList": [ { "id": 3, "userId": 53, "userName": "站长1", "replyUserId": 88, "replyUserName": "刘硕", "content": "嘿嘿嘿", "praseCount": 0, "praseState": false, "createTime": 1600831523000 }, { "id": 2, "userId": 88, "userName": "刘硕", "replyUserId": 54, "replyUserName": "test师傅", "content": "噢噢", "praseCount": 0, "praseState": false, "createTime": 1600676117000 }, { "id": 1, "userId": 54, "userName": "test师傅", "replyUserId": 88, "replyUserName": "刘硕", "content": "嗯嗯", "praseCount": 0, "praseState": false, "createTime": 1600676068000 } ] }, { "id": 1, "userId": 88, "userName": "刘硕", "userAvatar": "https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTI9021BNB7O3xE1DHRosQmZLRVAhGP9vEvYibxP2Aw8XPPaIVlF85iaP1QQcrMtYn7OKicicav51gxNCw/132", "content": "不错", "replyCount": 0, "praseCount": 0, "praseState": false, "createTime": 1600671327000, "commentReplyList": [] } ] }