ZHCU938C May 2018 – January 2021 CC3100 , CC3100MOD , CC3200 , CC3200MOD
在以下 POST 示例中,一旦用户点击提交按钮,POST 请求将包含 profiles_add.html(作为操作资源)以及具有用户请求值的变量 __SL_P_P.A 和 __SL_P_P.B。
<form method="POST" name="SimpleLink Configuration" action="profiles_add.html">
<tr>
<td dir=LTR> SSID: </td>
<td dir=LTR><input type="text" maxlength="32" name="__SL_P_P.A" /> Enter any value of up
to 32 characters</td>
</tr>
<tr>
<td dir=LTR> Security Type: </td>
<td dir=LTR> <input type="radio" name="__SL_P_P.B" value="0" checked />Open
<input type="radio" name="__SL_P_P.B" value="1" />WEP
<input type="radio" name="__SL_P_P.B" value="2" />WPA1
<input type="radio" name="__SL_P_P.B" value="3" />WPA2</td>
</tr>
<tr>
<td colspan=2 align=center><input type="submit" value="Add"/></td>
</tr>
</form>
当该页面显示在以下示例 (HTTP GET) 中时,__SL_G_N.A 将替换为具有当前 IP 地址值(显示在输入框中)的 HTTP Web 服务器。当用户更改并提交 IP 地址时,新值会连同 __SL_P_N.A 变量一起发送。
<form method="POST" name="SimpleLink Configuration action" action="ip_config.html">
<tr>
<td dir=LTR> IP Address: </td>
<td dir=LTR><input type="text" maxlength="15" name="__SL_P_N.A" value="__SL_G_N.A"/></td>
</tr>
<tr>
<td colspan=2 align=center><input type="submit" value="Apply"/></td>
</tr>
</form>