Please briefly describe the difference between the post and get requests requests

  ①get faster than the post
  ②get small size, post infinitely large
  ③get harmless when the browser is returned, post will be requested again
  url parameter ④get visible, post invisible
  ⑤get request data on the url, post data on the http inclusions (request body)
  ⑥get request parameters will retain history, post does not preserve (incognito browsing)
  ⑦get only accepts parameter data type ASCII characters, post no limit
  ⑧get will be actively catch a browser, post need to manually set
  ⑨get have caching, post no
  ⑩get relatively low security post

get and post are the underlying TCP / IP, TCP is the type of link.
  (1) get and post compared with its own semantics, not just mix
  (2) get a packet generated in the application process, post generates two packets, but not all browsers will send two packets, Firefox on sent only once.
  (3) the network is good, send a packet and the difference of the two basic disregard packet, the network time difference, two TCP packet will be better in the validation data packet integrity.

Guess you like

Origin www.cnblogs.com/wuqilang/p/11204673.html