场景:想单纯使用表单内置的api完成提交,不使用js代码
代码如下:
<form name="myForm" action="http://localhost:13734/form" method="post">
<label>
用户名
<input type="text" name="username" />
</label>
<label>
密码
<input type="password" name="password" />
</label>
<button type="submit">提交</button>
<button type="reset">重置</button>
</form>
1、http://localhost:13734 是我本地的服务器地址
2、/form 是我的服务器api路由
注意:input的name属性必须写,不然不会发送数据给服务器的
效果图: