文档
测试

用户给某个帖子评论

POST
http://localhost:3000/api/web/post/comment

请求参数

参数名
类型
描述
必填
account
string
用户账号
必填
post_id
number
帖子id
必填
comments
longtext
评论内容
必填
comment_imgs
string
图片地址拼接字符串,中间以为英文逗号,分割
必填

说明 / 示例

<font color=red>**帖子图片地址以字符串形式存储,以英文逗号,间隔**</font> 成功返回: ```json { "code": 200, "msg": "评论成功" } ```