前端获取新闻页面接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>前端获取新闻页面接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://10.1.2.14:8090/news/getNewsByPage</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>POST </li>
</ul>
<h5>参数</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pageNum</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>请求页面</td>
</tr>
<tr>
<td style="text-align: left;">pageCount</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>请求页数</td>
</tr>
</tbody>
</table>
<h5>请求示例</h5>
<p>格式:form-data</p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">值</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">pageNum</td>
<td style="text-align: left;">1</td>
</tr>
<tr>
<td style="text-align: left;">pageCount</td>
<td style="text-align: left;">3</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code> {&quot;res&quot;:true,&quot;message&quot;:&quot;[{\&quot;id\&quot;:3060,\&quot;title\&quot;:\&quot; 新婚\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/967f2346-0bdd-499d-804f-c1e529674163.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月14日 20:01:26\&quot;,\&quot;introduce\&quot;:\&quot; 爱情真的存在\&quot;},{\&quot;id\&quot;:3058,\&quot;title\&quot;:\&quot;新婚\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/c54ded76-a8a0-47cc-a912-3efc4024efce.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月14日 20:00:15\&quot;,\&quot;introduce\&quot;:\&quot;爱情真的存在\&quot;},{\&quot;id\&quot;:3003,\&quot;title\&quot;:\&quot;测试新闻\&quot;,\&quot;smallImage\&quot;:\&quot;upload/news/images/4e15a792-b788-4ea2-97ee-6332bcd463e5.jpg\&quot;,\&quot;date\&quot;:\&quot;2023年03月14日 15:24:10\&quot;,\&quot;introduce\&quot;:\&quot;简介简介简介\&quot;}]&quot;}</code></pre>
<h5>返回参数说明</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">res</td>
<td style="text-align: left;">string</td>
<td>返回状态,true:成功</td>
</tr>
<tr>
<td style="text-align: left;">message</td>
<td style="text-align: left;">string</td>
<td>返回id,标题,图像,日期,介绍</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>