我想用express和node.js编写一个非常简单的web应用程序。 该应用只有一个带表单的index.html。当表单被POST时,node.js服务器应该通过在txt文件中写入输入值来做出反应。 在浏览器中,然后应重新加载index.html文件以准备提交下一个表单。
除了在处理请求后重新加载index.html文件的部分之外,我设法让一切工作正常。 index.html位于' www'文件夹中。
最好的方法是什么?
这是我的app.js:
var express = require('express')
var app = express()
const fs = require('fs');
const bodyParser = require('body-parser');
app.use(express.static('www'));
app.use(bodyParser.urlencoded({extended: true}));
app.use(bodyParser.json());
var server = app.listen(3000, function () {
var host = server.address().address
var port = server.address().port
console.log('Express app listening at http://%s:%s', host, port)
})
server.on('request', (req, res) => {
if (req.method === 'POST') {
collectRequestData(req, res => {
console.log(res);
});
}
// Here the index.html should be reloaded
});
//This function only writes the form data to txt-file, I don't know if it is relevant here
function collectRequestData(request, callback) {}
答案 0 :(得分:-1)