利用AJAX 檢索PHP 檔案回應
使用AJAX 傳輸表單資料以在PHP 中進行處理時,您可能需要PHP 檔案傳回特定的回應,例如水果名稱。要處理AJAX 回呼中的回應,請依照下列步驟操作:
1.設定PHP 檔案以回顯回應:
在process.php 檔案中,加入以下程式碼以回顯所需的回應:
<code class="php"><?php echo 'apple'; ?></code>
2.在JavaScript 中定義AJAX 成功回呼:
在AJAX 請求的success 函數中,指定用於接收伺服器回應的參數data:
<code class="javascript">success: function(data) { // The response can be stored in the 'data' variable console.log(data); // Output: apple }</code>
Data PHP 檔案中的格式:
純文字回應足以滿足大多數情況。除非需要資料結構,否則不需要 JSON。
命名 POST 請求:
提供的範例程式碼未指定 POST 要求的資料參數。要命名它,請傳遞一個具有屬性和值的物件:
<code class="javascript">$.ajax({ type: "POST", url: "process.php", data: { fruit: 'banana' }</code>
以上是如何使用 AJAX 從 PHP 檔案中檢索特定回應?的詳細內容。更多資訊請關注PHP中文網其他相關文章!