我正在努力练习将静态html页面中的数据操作到Node.Js而不使用Angular,React或其他框架库。我已经安装了所有的依赖项,节点正在为我的index.html服务,但是,我似乎无法让我的post方法工作。我无法得到它甚至console.log任何东西。我已经查看了其他堆栈溢出问题和文档,但似乎无法弄清楚问题。
这是我的代码和文件结构。
HTML:
<form id="citySearchForm" action="http://127.0.0.1:3000/getcity" method="POST">
<div>
<p>Choose a city:</p>
<input type="text" placeholder="Enter a city" id="getCitiesInput" name="city"></input>
<input type="submit" value="submit">
</div>
<div id="weather"></div>
<p><span id="temp"></span></p>
<p><span id="wind"></span></p>
</form>
的node.js:
var express = require('express');
var app = express();
var bodyParser = require('body-parser');
var urlencodedParser = bodyParser.urlencoded({ extended: false});
app.use(express.static('public'));
app.get('/index.html', function(req, res){
res.sendFile(_dirname + "/" + "index.html");
})
app.post('/getcity', urlencodedParser, function(req, res){
response = { city : req.body.city };
console.log(response);
res.end(JSON.stringify(response));
})
app.listen(3000, function() { console.log('listening')});
JSON:
{
"name": "basic_weather_api",
"version": "1.0.0",
"description": "Just a basic api call",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.0",
"express": "^4.14.1"
}
}
答案 0 :(得分:0)
我已经验证了您的代码,它运行得非常好。
使用city = Test提交时,我在浏览器中看到了这个Json响应:{"city":"Test"}
另外,我也打算看到你的日志声明。但请记住,console.log()
语句是node.js
服务器代码的一部分,这意味着您的日志语句将打印在服务器日志中而不是打印机控制台中。如果使用node server.js
从终端运行节点服务器,您将在终端中看到您的日志。
如果您多次修改了依赖项版本,请删除node_modules
目录并尝试再次运行npm install
。