get請求和post請求的區別 9

2021-10-22 07:45:24 字數 1091 閱讀 4154

2021/3/15 get和post的區別

lang

="en"

>

>

charset

="utf-8"

>

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

>

documenttitle

>

head

>

>

action

=""method

="get"

>

>

type

="text"

name

="login"

>

p>

>

type

="password"

name

="pwd"

>

p>

>

type

="submit"

>

p>

form

>

action

=""method

="post"

>

>

type

="text"

name

="login"

>

p>

>

type

="password"

name

="pwd"

>

p>

>

type

="submit"

>

p>

form

>

body

>

html

>

get請求通常表示獲取資料

post請求通常表示提交資料

get請求傳送的資料都寫在位址列上,使用者可見

post請求傳送的資料使用者不可見

get請求不能提交大量資料,但post可以,因此不要混用

Get請求和Post請求區別

1.提交的資料型別 get為文字 post為文字和二進位制資料 2.提交的資料長度 get不超過255個字元 post沒有限制 3.提交資料的可見性 get作為url的一部分顯示在位址列裡 post作為請求的訊息體不可見 4.緩衝 get緩衝在瀏覽器url歷史狀態中 post不會被緩衝 5.表單中 ...

get請求和post請求區別

http請求方式有get post put delete等多種,最常用的就是get和post 多種請求方式 1 get請求一般用去請求獲取資料,post一般作為傳送資料到後台時使用2 get請求也可傳參到後台,但是其引數在瀏覽器的位址列的url中可見,所以私隱性安全性較差,且引數長度也是有限制的 p...

get請求和post請求的區別

使用http協議將客戶端的請求傳送到伺服器端有哪兩種方式?請簡述它們的區別 1 get是從伺服器上獲取資料,post是向伺服器傳送資料。2 在客戶端,get方式在通過url提交資料,資料在url中可以看到 post方式,資料放置在html header內提交。3 對於get方式,伺服器端用reque...