**简要描述:**
* 查询专题列表
**请求URL:**
* /api/v2/topic_list
**请求方式:**
* POST
**header:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| Content-Type | 是 | JSON | application/json |
**请求参数:**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| limit | 是 | int | 每页输出数量|
| page | 是 | int | 当前页码 |
**请求示例**
1.
~~~
{
"limit": "20", //页码默认为20
"page": "1", //当前页码
}
~~~
**查询某个返回示例**
~~~
{
"msg": "ok", //返回数据说明,错误时可能会有提示,成功时,可以为空
"status": 200, //200表示OK,其他状态500:错误
"result": null
}
~~~
**返回结果部分字段**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| page | 是 | int | 当前是第几页,从0开始 |
| pageSize | 是 | int | 每页最多显示多少条,查询请求参数是多少就多少 |
| total | 是 | int | 总数据数 |
| rows | 是 | array | 数据,为空时输出\[\] |
**rows结构体说明**
| 参数名 | 必选 | 类型 | 说明 |
| --- | --- | --- | --- |
| topic_id| 是 | int | 专题ID |
| topic_name | 是 | String | 专题标题 |
| topic_pic | 是 | String | 专题图片 |
| topic_level| 是 | int | 推荐级别 |
| topic_blurb | 是 | String | 专题简介 |
**专题列表数据**
~~~
{
"status":200,
"msg":"ok",
"result":{
"page":1,
"pageSize":20,
"total":2,
"rows":[
{
"topic\_id":2,
"topic\_name":"1111111111111",
"topic\_pic":"upload\\/topic\\/20210104-1\\/d3ab08e8e1fb11d0fde479bb7609531f.png",
"topic\_level":0,
"topic\_blurb":"333333333333333"
},
{
"topic\_id":1,
"topic\_name":"mingcheng",
"topic\_pic":"upload\\/topic\\/20210104-1\\/b290b4c9defc7f668c0c75a1d026ea55.png",
"topic\_level":0,
"topic\_blurb":"简介"
}
]
}
}
~~~