为什么我无法从nodejs向我的mongodb数据库发出任何请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么我无法从nodejs向我的mongodb数据库发出任何请求相关的知识,希望对你有一定的参考价值。
我正在尝试从nodejs api向mongodb发出post post请求它既不工作也不显示任何错误。
在尝试这个之前我的mongodb服务器没有工作,所以我卸载它后再次安装它。现在mongo连接正常,即使我的nodejs控制台说数据库已连接。
我正在尝试使用postsman
发帖请求。
我确实安装了猫鼬,身体解析器和快递。我无法弄清楚这里有什么问题。请帮忙。
这是我的代码
路线/ posts.js
const express = require('express');
const Post = require('../models/Post');
const router = express.Router();
router.post('/', (req, res, next) => {
const post = new Post({
_id: new mongoose.Types.ObjectId(),
title: req.body.title,
overview: req.body.overview,
content: req.body.content,
})
post.save().then(result => {
console.log(result);
res.status(201).json({
message: "Post created",
createdPost: {
_id: result._id,
title: result.title,
overview: result.overview,
content: result.content,
}
})
}).catch(err => {
console.log(err);
res.status(500).json({
error: err
})
})
})
module.exports = router;
模型/ Post.js
const mongoose = require('mongoose');
const postschema = new mongoose.Schema({
_id: mongoose.Schema.Types.ObjectId,
title: {
type: String,
required: true
},
overview: {
type: String,
required: true
},
content: {
type: String,
required: true
},
},{timestamps: true});
module.exports = mongoose.model('Post', postschema);
index.js
const express = require('express');
const mongoose = require('mongoose');
const bodyParser = require('body-parser');
const posts = require('./routes/posts');
const app = express();
mongoose.connect('mongodb://localhost:27017/adi-site', { useNewUrlParser: true }).then(
() => { console.log('database is connected') },
err => { console.log('Can not connect to the database' + err) }
);
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use('api/posts', posts);
app.listen(8080, ()=>console.log('App is on 8080'))
这就是我用邮递员发帖的方式
答案
问题是你的路线没有被调用。为什么?因为你从不向它发送请求。 POSTMAN说不能POST / api /帖子。我认为这是因为你使用
app.use('api/posts', posts)
我认为这应该是正确的方法
app.use('/api/posts' , posts)
以上是关于为什么我无法从nodejs向我的mongodb数据库发出任何请求的主要内容,如果未能解决你的问题,请参考以下文章
nodejs/mongoDB - 类型错误:无法读取未定义的属性“集合”
nodejs/mongoDB - 类型错误:无法读取未定义的属性“集合”