###获取数据接口
- Uri
http://localhost/fenye/pdo.php - Method
Get - Requset
| 参数名 | 必选 | 类型 | 说明 |
|---|---|---|---|
| page_size | 否 | Int | 每页展示多少条数据,默认为10条 |
| page_index | 是 | Int | 当前页码 |
- Response
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18{
"code":0,
"message":"Success",
"info":{
"count":100,
"total_page":10,
"data":[
{
"id":1,
"title":"测试成功",
"type":1,
"date":"2020-01-01"
},
{
}
]
}
}