ReinerLau1 / Blog

Just a blog
MIT License
0 stars 0 forks source link

GET和POST的请求的区别 #268

Closed ReinerLau1 closed 2 years ago

ReinerLau1 commented 2 years ago

应用场景

ReinerLau1 commented 2 years ago

是否缓存

ReinerLau1 commented 2 years ago

发送的报文格式

ReinerLau1 commented 2 years ago

安全性

Get 请求可以将请求的参数放入 url 中向服务器发送,这样的做法相对于 Post 请求来说是不太安全的,因为请求的 url 会被保留在历史记录中

ReinerLau1 commented 2 years ago

请求长度

浏览器由于对 url 长度的限制,所以会影响 get 请求发送数据时的长度。这个限制是浏览器规定的,并不是 RFC 规定的

ReinerLau1 commented 2 years ago

参数类型

post 的参数传递支持更多的数据类型