在以下示例中,index.html包含具有 action ='http://127.0.0.1:8000/process_get'和 method ='GET'的表单。
一旦按下“提交”按钮, input ='text '的值将发送到Http服务器。但是为什么需要将 index.html 文件发送回客户端? res.sendFile 的文档说,它在给定路径下传输文件。它没有说为什么?
服务器已经接收到输入值以进行处理。
var express = require('express');
var app = express();
app.use(express.static('public'));
app.get('/index.htm', function (req, res) {
res.sendFile( __dirname + "/" + "index.html" );
})
app.get('/process_get', function (req, res) {
// Prepare output in JSON format
response = {
first_name:req.query.first_name,
last_name:req.query.last_name
};
console.log(response);
res.end(JSON.stringify(response));
})
var server = app.listen(8081, function () {
var host = server.address().address
var port = server.address().port
console.log("Example app listening at http://%s:%s", host, port)
})