我正在使用this tutorial构建一个(RESTful)Node.js API。
我做了一个qazxsw poi
server.js
我可以运行我的服务器并看到消息:
我们活在8080年
我的const express = require('express');
const MongoClient = require('mongodb').MongoClient;
const bodyParser = require('body-parser');
const app = express();
const port = 8080;
app.listen(port, () => {
console.log('We are live on ' + port);
});
index.js
和我的const noteRoutes = require('./note_routes');
module.exports = function(app, db) {
noteRoutes(app, db);
// Other route groups could go here, in the future
};
node_routes.js
//create a node
module.exports = function(app, db) {
app.post('/notes', (req, res) => {
// You'll create your note here.
res.send('Hello')
});
};
和index.js
都在node_routes.js
内
我还下载了post man app,以便提出简单的请求
我得到了错误
不能POST /备注
app\routes\
我究竟做错了什么??我想不明白!