我正在尝试实现一个HTML表单,该表单接受输入并将其发送到节点js服务器,但是html表单未将任何数据发送到节点js。它发出请求,但不发送任何表单数据。
我有一个index.html文件
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Input Form</title>
</head>
<body>
<h1>Send a message:</h1>
<form action="http://localhost:3000/action" method="POST">
<label for="data">Message:</label>
<input type="text" id="data" placeholder="Enter your message" name="text"/>
<input type="submit" value="Send message" />
</form>
</body>
</html>
和一个节点js文件
//Modules
const fs = require ('fs');
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const http = require('http');
const actionRoute=require('./routes/action')
const server = http.createServer(app)
app.use(express.urlencoded({ extended: true }))
app.use(bodyParser.json())
app.all('/',(req,res)=>{
res.statusCode = 200;
res.setHeader('Content-Type', 'text/html');
res.end(fs.readFileSync('./public/index.html'))
})
const hostname = 'localhost';
const port = 3000
app.post('/action',(req,res)=>{
console.log(req.body)
res.statusCode=200;
res.end("thnx")
})
server.listen(port , hostname,function(){
console.log('Server running at http://'+hostname+':'+port);
});
目录结构:
|
| -index.js
| -public
| --index.html
在发布路线中,req.body为空,它会打印{}
答案 0 :(得分:2)
我尝试了完全相同的代码,并且效果很好。它对您不起作用的一个可能原因是html表单位于其他主机上,默认情况下不允许跨域请求。要允许所有来源:
从npm安装cors
npm install cors
为您的路线使用CORS中间件
const cors = require('cors');
.
.
.
app.post('/action', cors(), (req, res) => {
console.log(req.body)
res.statusCode=200;
res.end("thnx")
});