在节点js中使用mongoose连接到MongoDB后未显示数据

时间:2018-01-28 10:34:11

标签: javascript node.js mongodb

我在mongodb上有一个名为' abode'的数据库。我正在尝试创建一个API,我可以使用此数据在Web应用程序上显示。 Web应用程序的文件结构是这样的。

enter image description here

app.js

const http = require('http'); //Core Module
const fs = require('fs');
const express = require('express');
const bodyParser = require('body-parser');
const path = require('path'); //Core Module
const mongoose = require('mongoose');

const app = express();
const port = 3001;

Bhk = require('./models/bhk');
//Connect to mongoose
mongoose.connect('mongodb://localhost/abode');

const db = mongoose.connection;

app.get('/api/bhk', (req, res)=>{
    Bhk.getBHK(function(err, bhk){
        if(err){throw err;}
        res.json(bhk);
    });
});

bhk.js

const mongoose = require('mongoose');

//BHK schema
const bhkSchema = mongoose.Schema({
    Name:{
        type: String,
        required: true
    },
    create_date:{
        type: Date,
        default: Date.now
    }
});

const bhk = module.exports = mongoose.model('BHK', bhkSchema);

// Get BHK
module.exports.getBHK = function(callback, limit){
    bhk.find(callback).limit(limit);
}

当我运行应用程序时,它在我的网页上显示一个空数组。像这样 enter image description here

服务器成功启动,我的控制台也没有显示错误。在我的数据库的集合中,我有一个名为-BHK的集合。它由两个记录组成

{ "_id" : ObjectId("5a6d60827fad61a75bbcb5e9"), "Name" : "2BHK" }
{ "_id" : ObjectId("5a6d60b77fad61a75bbcb5ea"), "Name" : "3BHK" }

但是没有显示这些记录。我尝试搜索使用mongo db客户端的各种解决方案,但是我还没有得到所需的结果。我不知道我哪里错了。

1 个答案:

答案 0 :(得分:0)

经过大量网上浏览和反复试验后,我意识到MongoDB有一个命名集合和数据库的约定。 我命名的集合是'BHK',根据其guidelinesconventions错了。 集合名称必须是小写和复数,在我的情况下,我必须将集合重命名为:

  

bhks