使用jQuery的$.post方法可以以POST形式向服務器發(fā)起AJAX請求。$.post方法是jQuery的實用工具方法。
post和get發(fā)送方式的特點, GET 方法提交數(shù)據(jù)不安全,數(shù)據(jù)置于請求行,客戶端地址欄可見; GET 方法提交的數(shù)據(jù)大小限制在255 個字符之內(nèi)。POST方法提交的數(shù)據(jù)置于消息主體內(nèi),客戶端不可見, POST 方法提交的數(shù)據(jù)大小沒有限制。
$.post方法語法
$.post(url,parameters,callback) |
|
參數(shù) |
|
url |
(字符串)服務器端資源地址。 |
parameter |
(對象)需要傳遞到服務器端的參數(shù)。 參數(shù)形式為“鍵/值”。 |
callback |
(函數(shù))在請求完成時被調(diào)用。該函數(shù)參數(shù)依次為響應體和狀態(tài)。 |
返回值 |
XHR實例 |
看個簡單的例子
客戶端代碼:
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script> <script type="text/javascript"> $().ready(function () { $('#selectNum').change(function () { var idValue = $(this).val(); //采用POST方式調(diào)用服務 $.post('Server.aspx', { id: idValue }, function (text, status) { alert(text); }); }) }) </script> </head> <body> <select id="selectNum"> <option value="0">--Select--</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> </body> </html>
服務端主要代碼:
protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { if (Request["id"] != null && !string.IsNullOrEmpty(Request["id"].ToString())) { Response.Write( GetData(Request["id"].ToString())); } } } protected string GetData(string id) { string str = string.Empty; switch (id) { case "1": str += "This is Number 1"; break; case "2": str += "This is Number 2"; break; case "3": str += "This is Number 3"; break; default: str += "Warning Other Number!"; break; } return str; }
運行程序,結果如圖:
用httpwatcher攔截請求信息,當下拉框中選擇數(shù)字時,可以截取到如下請求信息。
使用$.post方法時的截圖:
通過上圖我們可以看到在POST Data里面有參數(shù),說明這是一次POST請求。
在服務器端狀態(tài)有改變,或者是修改更新某些數(shù)據(jù)時多用POST請求。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com