当前位置:网站首页>Overturn your cognition? The nature of get and post requests
Overturn your cognition? The nature of get and post requests
2022-07-06 04:09:00 【ZNineSun】
GET and POST yes HTTP Two basic methods of requesting , The difference between them , Maybe what we blurted out was :GET Include the parameter in URL in ,POST adopt request body Pass parameters .
Compare the official standard answer Like these :
- GET It is harmless when the browser is backout , and POST The request will be submitted again .
- GET Produced URL The address can be Bookmark, and POST Can not be .
- GET The request will be initiated by the browser cache, and POST Can't , Unless manually set .
- GET Request can only proceed url code , and POST Supports a variety of coding methods .
- GET The request parameters are fully preserved in the browser history , and POST The parameters in are not retained .
- GET Request in URL There is a length limit on the parameters passed in , and POST It has a .
- The data type for the parameter ,GET We only accept ASCII character , and POST There is no limit to .
- GET Than POST It's not safe , Because the parameters are directly exposed to URL On , So it can't be used to convey sensitive information .
- GET Parameters through URL Pass on ,POST Put it in Request body in .
Of course, it's good to answer these questions during the interview , In this article, do you think we just want to give you an interview answer ???no no no
If I told you GET and POST Is there no difference in essence between you and me ?
First of all, we need to understand GET and POST What is it? ?
HTTP Two ways to send requests in the protocol .
HTTP What is it? ?HTTP Is based on TCP/IP Protocol for how data is communicated on the world wide web .
HTTP The bottom is TCP/IP. therefore GET and POST The bottom layer is also TCP/IP, in other words ,GET/POST All are TCP link .GET and POST You can do the same thing . Do you want to GET add request body, to POST close url Parameters , Technically, it works perfectly .
that The problem is coming. , What are the standard answers above ?
TCP It's like a car , We use it TCP To transport data , It is very reliable , It never happens that fewer pieces are lost . But if we run as like as two peas, we'll run the same cars. , So the world looks like a mess , An urgent car may be blocked by a car full of goods ahead , The whole transportation system will be paralyzed .
To avoid that , traffic rules HTTP The birth of .HTTP There are several service categories for car transportation , Yes GET, POST, PUT, DELETE wait ,HTTP Regulations , When executed GET On request , To put a sticker on the car GET The label of ( Set up method by GET), And we need to put the transmitted data on the roof (url in ) To facilitate recording . If it is POST request , It's going to be pasted on the car POST The label of , And put the goods in the carriage .
Of course , You can also be in GET Sneak some goods into the car , But it was disgraceful ; It can also be in POST Put some data on the roof of the car , It feels silly .HTTP Just a Code of conduct , and TCP It's just GET and POST How to achieve the basic .
We only see HTTP Yes GET and POST Parameter transmission channel (url still requrest body) Put forward a request .“ The standard answer ” Where does the parameter size limit come from ?
In my world of the World Wide Web , There is another important role : Transportation company . Different browsers ( launch http request ) And the server ( Accept http request ) Just different shipping companies . Although theoretically , You can pile unlimited loads on the roof (url And an infinite number of arguments ).
But transportation companies are not stupid , Loading and unloading are also very costly , They will limit the number of shipments to limit the risk , Too much data is a burden on both the browser and the server . The unwritten rule in the industry is ,( majority ) Browsers often restrict url The length is in 2K Bytes , and ( majority ) Maximum server processing 64K The size of url. More than , We will not deal with it .
If you use GET service , stay request body Hiding the data , Different servers do different things , Some servers will unload for you , Read the data , Some servers just ignore it , therefore , although GET You can take request body, There is no guarantee that it will be received .
Okay , Now you know ,GET and POST It's essentially TCP link , There is no difference . But because of HTTP The rules and browsers / Server limitations , As a result, they show some differences in the application process .
GET and POST There is another important difference , To put it simply :
GET Produce a TCP Data packets ;POST Produce two TCP Data packets
- about GET Method request , The browser will http header and data Send along , Server response 200( Return the data );
- And for POST, Browser sends first header, Server response 100 continue, The browser sends data, Server response 200 ok( Return the data ).
in other words ,GET It only takes a car trip to get the goods to , and POST Have to run two , The first trip , Go and say hello to the server first “ hi , I have to deliver a shipment later , You open the door to meet me ”, Then go back and deliver the goods .
because POST Two steps are needed. , It takes a little more time , look GET Than POST More effective . therefore Yahoo The team has recommended GET Replace POST To optimize website performance . But this is a pit ! Jump in with caution . Why? ?
1.GET And POST Each has its own semantics , You can't mix them .
2. According to research , In a good network environment , The difference between the time to send a packet and the time to send two packets is negligible . And in the case of bad network environment , The two packages TCP On verifying packet integrity , It has great advantages .
3. Not all browsers will be there POST Send two packets in ,Firefox Just send it once .
So now look back at the standard answer above , Is there a deeper understanding !!!
边栏推荐
- Python book learning notes - Chapter 09 section 01 create and use classes
- Global and Chinese markets for medical gas manifolds 2022-2028: Research Report on technology, participants, trends, market size and share
- How to modify field constraints (type, default, null, etc.) in a table
- Ks008 SSM based press release system
- 查询mysql数据库中各表记录数大小
- 20、 EEPROM memory (AT24C02) (similar to AD)
- C mouse event and keyboard event of C (XXVIII)
- Script lifecycle
- P7735-[noi2021] heavy and heavy edges [tree chain dissection, line segment tree]
- 【leetcode】1189. Maximum number of "balloons"
猜你喜欢
[disassembly] a visual air fryer. By the way, analyze the internal circuit
How does technology have the ability to solve problems perfectly
DM8 archive log file manual switching
How to solve the problem of slow downloading from foreign NPM official servers—— Teach you two ways to switch to Taobao NPM image server
C form application of C (27)
【FPGA教程案例11】基于vivado核的除法器设计与实现
Simple blog system
Comprehensive ability evaluation system
1291_Xshell日志中增加时间戳的功能
MySQL about self growth
随机推荐
/usr/bin/gzip: 1: ELF: not found/usr/bin/gzip: 3: : not found/usr/bin/gzip: 4: Syntax error:
绑定在游戏对象上的脚本的执行顺序
有条件地 [JsonIgnore]
Global and Chinese markets for patent hole oval devices 2022-2028: Research Report on technology, participants, trends, market size and share
Facebook等大廠超十億用戶數據遭泄露,早該關注DID了
潘多拉 IOT 开发板学习(HAL 库)—— 实验9 PWM输出实验(学习笔记)
关于进程、线程、协程、同步、异步、阻塞、非阻塞、并发、并行、串行的理解
mysql关于自增长增长问题
脚本生命周期
WPF效果第一百九十一篇之框选ListBox
IDEA编译JSP页面生成的class文件路径
User datagram protocol UDP
ESP32(基于Arduino)连接EMQX的Mqtt服务器上传信息与命令控制
【PSO】基于PSO粒子群优化的物料点货物运输成本最低值计算matlab仿真,包括运输费用、代理人转换费用、运输方式转化费用和时间惩罚费用
2/12 didn't learn anything
使用JS完成一个LRU缓存
The Research Report "2022 RPA supplier strength matrix analysis of China's banking industry" was officially launched
How to execute an SQL statement in MySQL
Cross domain and jsonp details
math_极限&微分&导数&微商/对数函数的导函数推导(导数定义极限法)/指数函数求导公式推导(反函数求导法则/对数求导法)