1. 程式人生 > 其它 >建立ajax伺服器,獲取get引數

建立ajax伺服器,獲取get引數

1 //建立Ajax伺服器獲取get引數
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
    <p>
        <input type="text" id="username">
    </p>
    <p>
        <input type="text" id="age">
    </p>
    <p>
        <input type="button" value="提交" id="btn">
    </p>
    <script type="text/javascript">
        //
獲取按鈕元素 var btn = document.getElementById('btn'); // 獲取姓名文字框 var username = document.getElementById('username'); // 獲取年齡文字框 var age = document.getElementById('age'); // 為按鈕新增點選事件 btn.onclick = function () { // 建立ajax物件 var xhr = new
XMLHttpRequest(); // 獲取使用者在文字框中輸入的值 var nameValue = username.value; var ageValue = age.value; // 拼接請求引數 var params = 'username='+ nameValue +'&age=' + ageValue; // 配置ajax物件 xhr.open('get', 'http://localhost:3000/get?'+params);
// 傳送請求 xhr.send(); // 獲取伺服器端響應的資料 xhr.onload = function () { console.log(xhr.responseText) } } </script> </body> </htm>
//伺服器端程式碼
app.get('/get', (req, res) => { res.send(req.query); });