http协议的面试题 get请求和post请求有什么区别?
当是get请求时 页面进行跳转 如果有表单并且input标签中有name属性,可以从以下的地址中看到用户名和密码
Get
file:///G:/code/3.html?username=zhangsan&pwd=123&sex=on&bookstyle=on
Post
file:///G:/code/3.html
路径解析 ?前面是跳转路径 ?后面是用户的属性 属性和属性之间使用&符进行间隔
Get请求:不安全 地址栏上有用户的信息显示 路径地址的默认大小是64kb 限制
Post请求: 安全 地址栏上只有跳转的url不携带用户信息 大小没有限制