城市列表
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>获取城市接口</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>http://localhost:22064/api/city/list/?:keywords</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET </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;">keywords</td>
<td style="text-align: left;">否</td>
<td style="text-align: left;">string</td>
<td>关键字</td>
</tr>
</tbody>
</table>
<p>注意:keywords参数需要用restful风格,动态参数进行传递,例如:<a href="http://localhost:22064/api/city/list/北">http://localhost:22064/api/city/list/北</a></p>
<h5>返回示例</h5>
<pre><code>{
&quot;code&quot;: 200,
&quot;msg&quot;: &quot;获取城市列表成功!&quot;,
&quot;data&quot;: [
{
&quot;id&quot;: 1,
&quot;city_name&quot;: &quot;北京&quot;,
&quot;hot_city_flag&quot;: 1,
&quot;initial&quot;: &quot;B&quot;
},
{
&quot;id&quot;: 2,
&quot;city_name&quot;: &quot;上海&quot;,
&quot;hot_city_flag&quot;: 1,
&quot;initial&quot;: &quot;S&quot;
},
。。。
]
}</code></pre>