1、get請求和post請求區別1、get請求
1、資料拼接在url(無私隱)
2、有大小限制 40k
2、post請求
1、隱私檔案
2、大量資料
2、應用場景
1、get請求
1、獲取**
2、搜尋引擎索引
3、a標籤
2、post請求
1、form表單
3、基礎命令
1、request.method
結果:post和get
2、request.get.get()
3、request.post.get()
request.get 和 request.post 結果是字典
補充form表單
1、要有name屬性
2、action 指向提交的url,method指明請求的方法,一般使用post
3、按鈕 type = "
submit
"
get請求和post請求
1.get請求的請求資料在url中,post請求的請求資料在請求體中 2.資料長度,get請求有長度限制,post請求的長度限制由伺服器決定 3.資料安全性,兩者都不安全,但post相對安全一些 4.應用場景不同,get請求一般用於訪問頁面,post請求一般用於上傳資料 response reque...
GET請求和POST請求
http請求,由客戶端向服務端發出,可以分為四部分內容 請求方法 request method 請求的 request url 請求頭 request headers 請求體 request body 請求方法有get head post put delete options connect tra...
get請求和post請求
一 使用requests傳送get請求 二 使用urllib傳送get請求 urllib3主要使用連線池進行網路的訪問,以訪問之前我們需要建立乙個連線池物件 備註 這邊會有警告,這是因為urllib3時代,官方強制要求驗證http安全證書,如果沒有通過不能通過請求,這邊新增 urllib3.disa...