赞
踩
请求头:
请求头:
1.application/x-www-form-urlencoded
表单格式提交数据,通过form标签的action属性,如果不设置 enctype 属性,那么最终就会以 application/x-www-form-urlencoded 方式提交数据
html:
<form id="myform" onsubmit="return false;">
用户名:<input type="text" id="username" name="username"/>
密码:<input type="password" id="psw" name="psw"/><br/>
<!-- 头像:<input type="file" name="head"></form> -->
<div class="button">
<button class="btn btn-primary" id="register">注册</button>
</div>
</form>
js:
jq:
首先,Content-Type 被指定为 application/x-www-form-urlencoded;其次,提交的数据按照 key1=val1&key2=val2 的方式进行编码,key 和 val 会进行URL 转码。
2.multipart/form-data(文件上传)
这也是一个常见的 POST 数据提交的方式。我们使用表单上传文件时,就
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。