我一直试图在我的计算机上设置一个基本的MongoDB示例。 但我无法工作。
当我尝试从我的数据库中检索一个集合时(只有一个),我收到错误:
TypeError:db.getCollection不是函数
如果我尝试直接通过它的名字访问我的收藏品,我会收到错误
TypeError:无法读取属性'插入'未定义的
我在mLab上在线创建了我的数据库,因此我知道该集合存在。
这是我的server.js:
const express = require('express');
const MongoClient = require('mongodb').MongoClient;
const bodyParser = require('body-parser');
const app = express();
const db = require('./db');
const port = 8000;
app.use(bodyParser.urlencoded({ extended: true }));
MongoClient.connect(db.url, (err, database) => {
if (err) return console.log(err)
require('./app/routes')(app, database);
app.listen(port, () => {
console.log('We are live on ' + port );
});
})
这是我的路线:
module.exports = function(app, db) {
app.post('/notes', (req, res) => {
const note = { text: req.body.body, title: req.body.title };
db.getCollection('facts').insert(note, (err, result) => {
if (err) {
res.send({ 'error': 'An error has occurred' });
} else {
res.send(result.ops[0]);
}
});
});
};
为什么我无法访问getCollection()函数?
答案 0 :(得分:0)
因为在mongodb js库(正确名称为node-mongodb-native)中,.getCollection()
作为db
对象上的方法不存在。
请调用db.collection()
(或其他类似方法之一)。
collection(name, options, callback){Collection}
获取特定集合(包含实际集合信息)。如果应用程序不使用严格模式,则您 可以通过以下方式在没有回调的情况下使用它:
const collection = db.collection('mycollection');