建立ajax伺服器獲取post引數
阿新 • • 發佈:2021-12-02
<!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 = newXMLHttpRequest(); // 獲取使用者在文字框中輸入的值 var nameValue = username.value; var ageValue = age.value; // 拼接請求引數 var params = 'username='+ nameValue +'&age=' + ageValue; // 配置ajax物件 xhr.open('post', 'http://localhost:3000/post');// 設定請求引數格式的型別(post請求必須要設定) xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); // 傳送請求 xhr.send(params); // 獲取伺服器端響應的資料 xhr.onload = function () { console.log(xhr.responseText) } } </script> </body> </html>
//伺服器端程式碼
app.post('/post', (req, res) => { res.send(req.body); });