如何在AJAX 請求中檢索伺服器回應
您正在利用AJAX 將資料提交到名為「process.php.php」的PHP 檔案。 ”但是,您希望捕獲伺服器的回應,例如“apple”或“plum”,並將其儲存在變數中。
以下是必要步驟的細分:
在PHP 端:
修改您的「process.php」檔案以回顯所需的回應:
<code class="php"><?php echo 'apple'; ?></code>
在JavaScript 端:
在您的AJAX 請求中,包含以下行來定義成功處理程序:
<code class="javascript">success: function(response) { // Store the server's response in a variable var result = response; // Perform actions based on the response if (result == 'apple') { // Do something specific for apples } else if (result == 'plum') { // Do something specific for plums } }</code>
關於JSON:
您不一定需要以JSON 格式回顯回應。在發送請求之前添加以下行:
這將為POST 請求分配名稱“somedata”。
以上是如何捕獲 AJAX 請求中的伺服器回應並在 JavaScript 中處理它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!