全局
<h5>響應數據</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">響應碼</th>
<th>說明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">code</td>
<td>參考響應碼</td>
</tr>
<tr>
<td style="text-align: left;">info</td>
<td>消息</td>
</tr>
<tr>
<td style="text-align: left;">data</td>
<td>數據</td>
</tr>
</tbody>
</table>
<h5>響應碼</h5>
<table>
<thead>
<tr>
<th style="text-align: left;">代碼</th>
<th>說明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: left;">500</td>
<td>程序異常</td>
</tr>
<tr>
<td style="text-align: left;">200</td>
<td>成功</td>
</tr>
<tr>
<td style="text-align: left;">400</td>
<td>失敗</td>
</tr>
</tbody>
</table>
<h5>500 程序異常示例</h5>
<pre><code> {
&quot;code&quot;: 500,
&quot;into&quot;: &quot;未將對象引用設置到對象的實例&quot;,
&quot;data&quot;: null
}</code></pre>
<h5>200 成功示例</h5>
<pre><code> {
&quot;code&quot;: 200,
&quot;into&quot;: &quot;響應成功&quot;,
&quot;data&quot;: [{id:1,text:&quot;描述1&quot;},{id:2,text:&quot;描述2&quot;}]
}</code></pre>
<h5>400 失敗示例</h5>
<pre><code> {
&quot;code&quot;: 400,
&quot;into&quot;: &quot;沒有找到用品數據&quot;,
&quot;data&quot;: null
}</code></pre>