文档
测试

故事评论列表 GET

GET
/api/stranger_story_comments

请求参数

参数名
类型
描述
必填
story_id
path
故事id
必填
page
必填
size
必填
user_id
必填

响应参数

参数名
类型
描述
必填
0
object
数据字典
必填
id
string
示例:string
必填
content
string
示例:string
必填

说明 / 示例

# 响应示例 ```json { "status": 200, "data": [ { "_id": 2, "user_id": 1, "user_name": "Tom", "story_id": 5, "content": "don't worry", "prayed": 8, "prayed_logical": 8, "createdAt": "2021-05-27T06:05:48.000Z", "updatedAt": "2021-05-28T02:35:49.000Z", "deletedAt": null, "doesIPrayed": true }, { "_id": 3, "user_id": 1, "user_name": "Tom", "story_id": 5, "content": "don't worry", "prayed": 0, "prayed_logical": null, "createdAt": "2021-05-27T07:03:44.000Z", "updatedAt": "2021-05-27T07:03:44.000Z", "deletedAt": null, "doesIPrayed": false }, { "_id": 1, "user_id": 303, "user_name": "Tom", "story_id": 5, "content": "don't worry", "prayed": 3, "prayed_logical": null, "createdAt": "2021-05-27T05:58:12.000Z", "updatedAt": "2021-05-27T06:04:44.000Z", "deletedAt": null, "doesIPrayed": true } ] } ```