前端查询存在(鉴权)
<p>[TOC]</p>
<h5>请求URL</h5>
<ul>
<li><code>http://127.0.0.1/hambur?type=h5_money&amp;t=a85dc7d02aaa2c348c1a </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;">t</td>
<td style="text-align: left;">是</td>
<td style="text-align: left;">string</td>
<td>token</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;">code</td>
<td>不等于200就跳转/等于200且message=="未下单"(可下单)/等于200且message=="已下单"(跳转到查询订单界面)</td>
</tr>
<tr>
<td style="text-align: left;">t</td>
<td>链接密钥</td>
</tr>
<tr>
<td style="text-align: left;">p</td>
<td>价格(用于后续比对餐品价格)</td>
</tr>
<tr>
<td style="text-align: left;">ProductId</td>
<td>餐品id(用于后续读取餐品信息)</td>
</tr>
<tr>
<td style="text-align: left;">Product_name</td>
<td>餐品名字(用于后续匹配餐品名称)</td>
</tr>
</tbody>
</table>
<h5>返回示例</h5>
<pre><code>//错误的返回
{&quot;code&quot;:&quot;100&quot;,&quot;message&quot;:&quot;此链接不存在!!!&quot;,&quot;t&quot;:&quot;a85dc7d02aaa2c348c1a&quot;,&quot;author&quot;:&quot;WeChat:rebot_bear&quot;}
//未下单的返回
{&quot;code&quot;:&quot;200&quot;,&quot;p&quot;:&quot;18&quot;,&quot;ProductId&quot;:&quot;34336&quot;,&quot;Product_name&quot;:&quot;塔堡卡·豪华单人餐&quot;,&quot;message&quot;:&quot;未下单&quot;,&quot;t&quot;:&quot;a85dc7d02aaa2c348c1a&quot;,&quot;author&quot;:&quot;WeChat:rebot_bear&quot;}
//已下单的返回
{&quot;code&quot;:&quot;200&quot;,&quot;t&quot;:&quot;a85dc7d02aaa2c348c1a&quot;,&quot;message&quot;:&quot;已下单&quot;,&quot;author&quot;:&quot;WeChat:rebot_bear&quot;}</code></pre>