我正在尝试使用 post 方法将指定的数据发布到服务器并获得一些数据消息作为回报。如何使用 post 方法发送指定的数据。
AUTHENTICATION:
POST: URL
Inputs:
type = csv | json
roll = alphanumeric string
dob = mmddyyyy
method = auth
devId = <developer id>
Output:
result = success | failure
nKey = an encrypted key for the particular user
message = <failure reason>
这是表格代码
<form id="login">
<ul>
<li>
<input type="date" placeholder="date of Birth" />
</li>
<li>
<input type="text" pattern="[a-zA-Z]{1}\d{7}" title="X9999999" placeholder="XX999" />
</li>
<li>
<input type="submit" value="Login" class="button" />
</li>
</ul>
如何使用 post 方法发送带有输入数据的表单数据?