AJAX中get和post傳參知識點

2021-08-30 04:41:45 字數 507 閱讀 5910

ajax中xmlhttprequest以非同步方式的處理程式的特點: 

1、建立非同步物件

2、設定請求報文

xhr.open() 發起請求,可以是get、post方式

xhr.setrequestheader() 設定請求頭

xhr.send() 傳送請求主體get方式使用xhr.send(null)

xhr.onreadystatechange = function () {} 監聽響應狀態

readstate 屬性有五個狀態:

xhr.status表示響應碼,如200

xhr.statustext表示響應資訊,如ok

xhr.getallresponseheaders() 獲取全部響應頭資訊

xhr.getresponseheader('key') 獲取指定頭資訊

xhr.responsetext、xhr.respon***ml都表示響應主體

requests中get和post傳參

get url,params none,kwargs requests實現get請求傳參的兩種方式 方式一 import requests url 使用?攜帶引數 r requests.get url print r.url 執行結果 方式二 import requests url params 也...

ajax中的POST和GET傳值

accept encoding gzip,deflate user agent mozilla 4.0 compatible msie 6.0 windows nt 5.0 net clr 1.1.4322 host localhost content length 28 connection ke...

fetch的get和post傳參

原生get請求是在 鏈結後加上?key value key value進行傳參。原生fetch中一般用法為fetch url,then res catch res 1 其中配置引數一般如下 method 請求使用的方法,如 post get headers 請求頭資訊,可能是字串,也有可能是head...