- 🦊一分钟,了解 Apifox !
- 极客空间
- 接口文档
- admin
- dashboard
- trends
- image
- imageCategory
- article
- category
- tags
- user
- guestbook
- source
- animation
- resume
- friendlink
- web
获取动态列表
开发中
GET
/api/admin/trends/list
动态
请求参数
Query 参数
page
integer
分页数
pageSize
integer
每页数量
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:3000/api/admin/trends/list?page&pageSize'
返回响应
🟢200成功
application/json
Body
code
integer
响应码
message
string
响应信息
data
array[object (trends) {10}]
列表信息
_id
string
动态ID
content
string
动态内容
createTime
string
创建时间
updateTime
string
更新时间
userID
string
用户ID
userInfo
object (user)
用户信息
imgList
array[string]
图片url列表
likeNum
integer
点赞数
commentNum
integer
评论数
lookNum
integer
浏览数
total
integer
列表总数
示例
{
"code": 200,
"message": "获取动态列表成功",
"data": [
{
"_id": "669869c8372fafe19953cf6f",
"content": "zazaZaxaxax😂😂🤣😋😍😋",
"createTime": "2024-07-18 09:03",
"updateTime": "2024-07-18T03:10:03.900Z",
"userID": "66835388cfda9e40449a6a07",
"userInfo": {
"_id": "66835388cfda9e40449a6a07",
"username": "admin",
"password": "#",
"gender": 1,
"email": "admin@163.com",
"introduction": "。",
"avatar": "http://localhost:3000/images/user/60edc167e0ab2488f848dba59e138a1f.jpeg",
"nickname": "顾言",
"__v": 0,
"csdn": "https://blog.csdn.net/2301_76380626",
"gitee": "https://gitee.com/DT-guyan",
"github": "https://github.com/guyan-tttt",
"phone": "17898789876"
},
"imgList": [
"http://localhost:3000/images/trends/edb37d2d21f715ef8c67b04677461a6b.jpeg"
],
"likeNum": 0,
"commentNum": 0,
"lookNum": 0,
"__v": 0
},
{
"_id": "669869c8372fafe19953cf6f",
"content": "zazaZaxaxax😂😂🤣😋😍😋",
"createTime": "2024-07-18 09:03",
"updateTime": "2024-07-18T03:10:03.900Z",
"userID": "66835388cfda9e40449a6a07",
"userInfo": {
"_id": "66835388cfda9e40449a6a07",
"username": "admin",
"password": "#",
"gender": 1,
"email": "admin@163.com",
"introduction": "。",
"avatar": "http://localhost:3000/images/user/60edc167e0ab2488f848dba59e138a1f.jpeg",
"nickname": "顾言",
"__v": 0,
"csdn": "https://blog.csdn.net/2301_76380626",
"gitee": "https://gitee.com/DT-guyan",
"github": "https://github.com/guyan-tttt",
"phone": "17898789876"
},
"imgList": [
"http://localhost:3000/images/trends/edb37d2d21f715ef8c67b04677461a6b.jpeg"
],
"likeNum": 0,
"commentNum": 0,
"lookNum": 0,
"__v": 0
},
],
"total": 10
}
修改于 2024-07-18 07:07:19