91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

如何利用xmlhttp.open實現實時通信

小樊
83
2024-10-16 03:02:59
欄目: 編程語言

XMLHttpRequest 是一個用于創建異步 HTTP 請求的 JavaScript 對象。通過使用 XMLHttpRequest,你可以實現客戶端與服務器之間的實時通信。以下是一個簡單的示例,展示了如何使用 XMLHttpRequest 實現實時通信:

  1. 創建一個 HTML 文件,如 index.html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>XMLHttpRequest Real-time Communication</title>
</head>
<body>
    <h1>XMLHttpRequest Real-time Communication</h1>
    <button id="sendRequest">Send Request</button>
    <ul id="responseList"></ul>

    <script src="main.js"></script>
</body>
</html>
  1. 創建一個 JavaScript 文件,如 main.js
document.getElementById('sendRequest').addEventListener('click', sendRequest);

function sendRequest() {
    const xhr = new XMLHttpRequest();
    const url = 'server.php'; // 你的服務器端腳本地址

    // 設置請求類型和服務器地址
    xhr.open('GET', url, true);

    // 設置請求完成時的回調函數
    xhr.onload = function () {
        if (xhr.status === 200) {
            const response = JSON.parse(xhr.responseText);
            addResponseToList(response);
            sendRequest(); // 遞歸調用以實現實時通信
        } else {
            console.error('Error:', xhr.statusText);
        }
    };

    // 發送請求
    xhr.send();
}

function addResponseToList(response) {
    const responseList = document.getElementById('responseList');
    const listItem = document.createElement('li');
    listItem.textContent = response.message;
    responseList.appendChild(listItem);
}
  1. 創建一個服務器端腳本(這里使用 PHP 作為示例):
<?php
header('Content-Type: application/json');

// 這里可以連接數據庫或執行其他操作來獲取實時數據
$message = 'Hello from server!';

// 發送 JSON 格式的響應
echo json_encode(['message' => $message]);
  1. server.php 部署到一個支持 PHP 的 Web 服務器上,并確保 index.htmlmain.js 文件位于同一目錄下。

現在,當你在瀏覽器中打開 index.html 并點擊 “Send Request” 按鈕時,客戶端將通過 XMLHttpRequest 向服務器發送請求,服務器將返回一個 JSON 格式的響應。客戶端接收到響應后,將其添加到列表中,并再次發送請求以實現實時通信。

0
杭锦后旗| 海盐县| 济源市| 综艺| 儋州市| 拉孜县| 西华县| 塔河县| 南投市| 南城县| 额尔古纳市| 芮城县| 广南县| 临城县| 广昌县| 登封市| 神木县| 汉阴县| 米泉市| 丰顺县| 施甸县| 织金县| 贵德县| 油尖旺区| 调兵山市| 绥芬河市| 辽宁省| 杨浦区| 滦南县| 大厂| 德庆县| 长垣县| 黄骅市| 纳雍县| 吴川市| 太谷县| 洪洞县| 孟州市| 彭阳县| 营口市| 卫辉市|