(1)可以无需刷新页面与服务器端进行通信;
(2)允许你根据用户事件来更新部分页面内容
(1)没有浏览历史,不能回退;
(2)存在跨域问题;
(3)SEO(搜索引擎优化)不友好? =>? 爬虫是爬不到的
HTTP (hypertext? transport? protocol )? 协议 【超文本传输协议】,协议详细规定了浏览器和万维网服务器之间互相通信的规则。
(1)请求报文:【重点是格式与参数】
请求行:GET/POST? ?/s ?ie=uef-8? ? HTTP/1.1
请求头:Host: baidu.com
? ? ? ? ? ? ? Cookie: name = xx
? ? ? ? ? ? ? Content-type: application/x-www-form-urlencoded
? ? ? ? ? ? ? User-Agent: chrome? 83
空行:
请求体:GET请求的话,请求体是空的;POST请求的话请求体可以不为空(userName=admin&password=admin123)
(2)响应报文:
响应行:HTTP/1.1? ?200/404/500? ?OK
响应头:Content-type: text/html; charset=utf-8
? ? ? ? ? ? ? ?Content-length: 2048
? ? ? ? ? ? ? ? Content-encoding: gzip
空行:
响应体:<html>
? ? ? ? ? ? ? ? ? ? ? ? <head></head>
? ? ? ? ? ? ? ? ? ? ? ? <body>
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <h1>xx</h1>
????????????????????????</body>
????????????????</html>