小程序商品分类接口
<p>[TOC]</p>
<h5>简要描述</h5>
<ul>
<li>小程序商品分类</li>
</ul>
<h5>请求URL</h5>
<ul>
<li><code>https://www.itnan.cc/api/xcxapi/category.php</code></li>
</ul>
<h5>请求方式</h5>
<ul>
<li>GET</li>
</ul>
<h5>返回示例</h5>
<pre><code>[
&quot;msg&quot;:&quot;success&quot;,
&quot;status&quot;:200,
[
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate1.png&quot;,
&quot;cate_id&quot;: 1,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=1&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate2.png&quot;,
&quot;cate_id&quot;: 2,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=2&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate3.png&quot;,
&quot;cate_id&quot;: 3,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=3&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate4.png&quot;,
&quot;cate_id&quot;: 4,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=4&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate5.png&quot;,
&quot;cate_id&quot;: 5,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=5&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate6.png&quot;,
&quot;cate_id&quot;: 6,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=6&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate7.png&quot;,
&quot;cate_id&quot;: 7,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=7&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate8.png&quot;,
&quot;cate_id&quot;: 8,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=8&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate9.png&quot;,
&quot;cate_id&quot;: 9,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=9&quot;
},
{
&quot;image_src&quot;: &quot;https://www.itnan.cc/api/xcxapi/images/cate10.png&quot;,
&quot;cate_id&quot;: 10,
&quot;navigator_url&quot;: &quot;/pages/category/category?cate_id=10&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;">cate_id</td>
<td style="text-align: left;">int</td>
<td>商品分类id</td>
</tr>
<tr>
<td style="text-align: left;">image_src</td>
<td style="text-align: left;">string</td>
<td>图片地址</td>
</tr>
<tr>
<td style="text-align: left;">navigator_url</td>
<td style="text-align: left;">string</td>
<td>跳转地址</td>
</tr>
</tbody>
</table>
<h5>备注</h5>
<ul>
<li>更多返回错误代码请看首页的错误代码描述</li>
</ul>