文档
测试

820发送朋友圈

POST
/api/user/community/sendComment

接口描述

发送朋友圈,根据userId添加用户的头像昵称啥的到社区评论的那个表

说明 / 示例

>请求参数 ```json { userId : 5, commentValue: "2123" //评论内容 } ``` >响应参数 ```json { "code" : 0, "data" : { // 把评论表刷新然后添加这个人的评论发回来 commentList: [ { avatar: "https://pic.imgdb.cn/item/611083b95132923bf815110a.png", nickName: "一个女孩", commentContent: "Niubility!!", commentTime: "2021-08-09 09:24", }, { avatar: "https://pic.imgdb.cn/item/611083b95132923bf815110c.png", nickName: "一个男孩", commentContent: "用来测试换行。用来测试换行。用来测试换行", commentTime: "2021-08-09 09:22", }], status : 0 //0代表还有后续,1代表没有后续了 } } ```