- 🦊一分钟,了解 Apifox !
- 极客空间
获取文章列表(前台)
开发中
GET
/api/web/article/list
文章(前台)
请求参数
Query 参数
page
integer
页码
示例值:
1
pageSize
integer
每页条数
示例值:
5
示例代码
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/web/article/list?page=1&pageSize=5'
返回响应
🟢200成功
application/json
Body
code
integer
响应码
message
string
响应信息
data
array[object (article) {16}]
必需
title
string
文章标题
content
string
文章内容
categoryID
string
文章分类ID
tags
array[object (tags) {5}]
文章标签ID
desc
string
文章描述
cover
string
文章封面
authorID
string
作者ID
isPublish
boolean
是否发布
isTop
boolean
是否置顶
isOriginal
boolean
是否原创
viewNum
integer
阅读量
createTime
string
创建时间
updateTime
string
更新时间
isDelete
boolean
是否删除
likeNum
integer
点赞数
aboutInfo
object
必需
示例
{
"code": 200,
"message": "获取成功",
"data": [
{
"title": "统七布离时影",
"content": "Ut pariatur",
"categoryID": "91",
"tags": [
{
"name": "产为中光",
"icon": "http://dummyimage.com/100x100",
"desc": "mollit",
"createTime": {},
"updateTime": {}
}
],
"desc": "eiusmod aute culpa",
"cover": "laboris",
"authorID": "43",
"isPublish": true,
"isTop": false,
"isOriginal": false,
"viewNum": 63,
"createTime": "1977-04-17 22:53:39",
"updateTime": "1998-04-01 01:11:44",
"isDelete": false,
"likeNum": 75,
"aboutInfo": {}
},
{
"title": "美已部",
"content": "et Lorem Excepteur cupidatat tempor",
"categoryID": "60",
"tags": [
{
"name": "头越报运与战准",
"icon": "http://dummyimage.com/100x100",
"desc": "in",
"createTime": {},
"updateTime": {}
},
{
"name": "工但族众二商",
"icon": "http://dummyimage.com/100x100",
"desc": "ut occaecat",
"createTime": {},
"updateTime": {}
}
],
"desc": "minim Duis deserunt enim officia",
"cover": "incididunt non Duis exercitation",
"authorID": "32",
"isPublish": true,
"isTop": false,
"isOriginal": false,
"viewNum": 57,
"createTime": "1984-05-30 22:00:14",
"updateTime": "1991-02-18 04:04:09",
"isDelete": false,
"likeNum": 7,
"aboutInfo": {}
},
{
"title": "世共正会究",
"content": "veniam mollit velit dolor in",
"categoryID": "88",
"tags": [
{
"name": "济口格最型报",
"icon": "http://dummyimage.com/100x100",
"desc": "eiusmod in",
"createTime": {},
"updateTime": {}
},
{
"name": "先至将",
"icon": "http://dummyimage.com/100x100",
"desc": "occaecat non culpa proident",
"createTime": {},
"updateTime": {}
}
],
"desc": "sed",
"cover": "dolore in ea",
"authorID": "83",
"isPublish": false,
"isTop": false,
"isOriginal": false,
"viewNum": 94,
"createTime": "1985-04-30 05:02:55",
"updateTime": "1999-10-06 15:00:42",
"isDelete": true,
"likeNum": 4,
"aboutInfo": {}
}
]
}
修改于 2024-07-28 06:58:19