jQuery – AJAX get() 和 post() 方法

小陳的筆記發表於2022-08-03

jQuery get() 和 post() 方法用於透過 HTTP GET 或 POST 請求從伺服器請求資料。

HTTP 請求:GET vs. POST

兩種在客戶端和伺服器端進行請求-響應的常用方法是:GET 和 POST。

  • GET - 從指定的資源請求資料
  • POST - 向指定的資源提交要處理的資料

GET 基本上用於從伺服器獲得(取回)資料。註釋:GET 方法可能返回快取資料。

POST 也可用於從伺服器獲取資料。不過,POST 方法不會快取資料,並且常用於連同請求一起傳送資料。

jQuery $.get() 方法

$.get() 方法透過 HTTP GET 請求從伺服器上請求資料。

語法:

$.get(URL,callback);

必需的  URL 引數規定您希望請求的 URL。

可選的  callback 引數是請求成功後所執行的函式名。

下面的例子使用 $.get() 方法從伺服器上的一個檔案中取回資料:

$("button").click(function(){
  $.get("demo_test.php",function(data,status){
    alert("資料: " + data + "\n狀態: " + status);
  });
});

$.get() 的第一個引數是我們希望請求的 URL("demo_test.php")。

第二個引數是回撥函式。第一個回撥引數存有被請求頁面的內容,第二個回撥引數存有請求的狀態。

提示: 這個 PHP 檔案 ("demo_test.php") 類似這樣:

<?php
 echo "This is some text from an external PHP file.";
 ?>

jQuery $.post() 方法

$.post() 方法透過 HTTP POST 請求從伺服器上請求資料。

語法:

$.post(URL,data,callback);

必需的  URL 引數規定您希望請求的 URL。

可選的  data 引數規定連同請求傳送的資料。

可選的  callback 引數是請求成功後所執行的函式名。

下面的例子使用 $.post() 連同請求一起傳送資料:

$("button").click(function(){
  $.post("demo_test_post.html",
  {
    name:"Donald Duck",
    city:"Duckburg"
  },
  function(data,status){
    alert("Data: " + data + "nStatus: " + status);
  });
});

$.post() 的第一個引數是我們希望請求的 URL ("demo_test_post.php")。

然後我們連同請求(name 和 city)一起傳送資料。

"demo_test_post.php" 中的 PHP 指令碼讀取這些引數,對它們進行處理,然後返回結果。

第三個引數是回撥函式。第一個回撥引數存有被請求頁面的內容,而第二個引數存有請求的狀態。

提示: 這個 PHP 檔案 ("demo_test_post.php") 類似這樣:

 <?php
 $name = isset($_POST['name']) ? htmlspecialchars($_POST['name']) : '';
 $city = isset($_POST['city']) ? htmlspecialchars($_POST['city']) : '';
 echo 'Dear ' . $name;
 echo 'Hope you live well in ' . $city;
 ?>

提示: 在jQuery中,$.ajax()方法 能夠實現與load()、$.get()和$.post()方法相同的功能,並且具有更多的作用!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70018483/viewspace-2908727/,如需轉載,請註明出處,否則將追究法律責任。

相關文章