前端傳送請求的方法總結

2021-10-03 14:42:38 字數 952 閱讀 1908

get請求

function ajax(url,success,error)else

oajax.open('get',url,true);

oajax.send();

oajax.onreadystatechange = function()else}};

}

post請求

function ajax(url,success,error)else

oajax.open('post ',url,true);

oajax.send('fname=bill&lname=gates');

oajax.onreadystatechange = function()else}};

}

$.ajax(,

//請求位址

url : "",

//資料,json字串

data : json.stringify(list),

//請求成功

success : function(result) ,

//請求失敗,包含具體的錯誤資訊

error : function(e)

});

axios是基於promise可以用於瀏覽器和node.js的http客戶端

支援瀏覽器和node.js

支援promise

能攔截請求和響應

能轉換請求和響應資料

能取消請求

自動轉換json資料

瀏覽器端支援防止csrf(跨站請求偽造)

// 發起乙個post請求

axios(

}).then(data=>);

具體用法[新增鏈結描述](

curl傳送請求總結

經常要用到curl,需要呼叫被人的介面,總結了乙個好用的方法,下次直接用 2 設定提交方式 switch type 3 裝置請求體 if count body 0 設定請求頭 if count header 0 上傳檔案相關設定 curl setopt ch,curlopt followlocati...

傳送Http請求 POST GET 的方法

我們知道http有get和post兩種方法,我們分開說吧.另註 今天講的方法是同步的請求,非同步的方法我還沒試過,不知道有沒有使用非同步的需求,有的話於發上來和大家分享.1.get方法 1.1使用nsmutableurlrequest view plaincopy to clipboardprint...

curl傳送不同的請求方法

前言 測試中需要抓取http不同請求方法的包,get post這類常見的方法隨便訪問網頁就可以。但如何傳送http的其他請求方法呢,head options put patch delete trace 和 connect 查詢資料發現可以用curl實現 http1.0 定義了三種請求方法 get,...