HTTP中的get請求與post請求

2021-07-30 22:18:22 字數 977 閱讀 2595

首先,我先介紹一下http請求的基本原理:假如我們在瀏覽器中輸入乙個**訪問的話,其實這就是乙個get請求。get一般是用於獲取/查詢資源資訊,而post一般是用於更新資源資訊。

get請求例項

get 

host: weibo.com

上面3行是get請求的例項,我們從例項中可以看到是請求的url位址,而後面的

invitecode=25689975是傳輸的資料,以?分開。

post請求例項

這是post請求的例項,post請求會將請求的資料放置在http請求包的包體中,最後一行的item-bandsaw就是傳輸的資料

/*** get請求

* @param url

* @return

*/public static jsonobject dogetstr(string url)

} catch (clientprotocolexception e) catch (ioexception e)

return jsonobject;}

/*** post請求

* @param url

* @param outstr

* @return

*/public static jsonobject dopoststr(string url, string outstr) catch (exception e)

return jsonobject;

}

Vue resource中的GET與POST請求

在 vue 2 版本,官方推薦使用 axios 來進行開發,可以閱讀這篇文章來學習 axios 全攻略之基本介紹與使用 get 與 post 前言 vue resource 使用比 jquery 更加簡潔的方式實現了非同步請求功能,還提供了比如 interceptors 這樣處理請求過程中行為的功能...

HTTP協議中GET請求與POST請求的區別

在http的八種請求方式中,最常用的兩種請求方式為get方式與post方式,今天我們來分析以下兩種請求方式的區別 方面get請求 post請求 是否可見 get請求的請求資訊會直接顯示在url位址列中,可以被使用者直接看到 post請求資訊不會顯示在位址列中,也不會儲存在瀏覽記錄中 傳輸長度 受到u...

iOS中網路請求的使用 GET請求與POST請求

get post get和post是兩種最常用的與伺服器進行互動的http方法 get語意是獲取指定url的資源。將資料按照variable value的形式,新增到action所指向的url後面,並且兩者只用 連線,各變數之間使用 連線。貌似不安全,因為在傳輸過程中,資料被放在請求的url中。傳輸...