5. 根据 id 获取文章标题
<p><strong>简要描述:</strong> </p>
<ul>
<li>根据文章 id 获取标题</li>
</ul>
<p><strong>请求URL:</strong> </p>
<ul>
<li><code>/articles/get_title</code></li>
</ul>
<p><strong>请求方式:</strong></p>
<ul>
<li>GET </li>
</ul>
<p><strong>参数:</strong> </p>
<table>
<thead>
<tr>
<th style="text-align: left;">参数名</th>
<th style="text-align: left;">必选</th>
<th style="text-align: left;">类型</th>
<th>说明</th>
<th>示例</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">ids</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">int</td>
<td>文章id。多个id之间用","分开。</td>
<td>10,1024</td>
</tr>
</tbody>
</table>
<p><strong>返回示例</strong></p>
<pre><code>{
"msg": "success",
"data": {
"titles": [
{
"id": 10,
"title": "玻璃瓶里居然装了一幅山水画,太美了!"
},
{
"id": 1024,
"title": "日出东方红,红,红,红,红,红,红,红,红,红,红,红,红,红,红,红,红,"
}
]
},
"code": 1,
"state": true
}</code></pre>
<p><strong>返回参数说明</strong> </p>
<ul>
<li>
<p>暂无</p>
<p><strong>备注</strong> </p>
</li>
<li>暂无</li>
</ul>