MongoDB find()什么都不返回

时间:2013-09-20 09:42:11

标签: node.js mongodb express mongoose

我正在尝试从mongodb shell查询我的数据库以检索所有条目。不过,我的find()方法什么也没有返回。

这是我正在使用的猫鼬模型:

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;

var ArticleSchema = new Schema({
    title: String,
    content: String,
    author: { type: String, default: 'Vlad'},
    postDate: { type: Date, default: Date.now }
});

ArticleSchema.methods.formatTitle = function() {
    var link = this.title.replace(/\s/g, '-');
    return '/article/' + link;
};

ArticleSchema.methods.snapshot = function() {
    var snapshot = this.content.substring(0, 500);
    return snapshot;
};

module.exports = mongoose.model('Article', ArticleSchema);

在浏览器中加载我的Express.js应用程序时,我没有显示使用我的API添加的所有文章的问题。不过,我只想进入mongo shell并查询它们。我使用了以下查询:

// blog is the database name (mongodb://localhost:27017/blog)
db.blog.find()

我得到一个空字符串作为回报,基本上是控制台中的一个新行。

3 个答案:

答案 0 :(得分:7)

你的答案就在那里,问题是:

// blog is the database name (mongodb://localhost:27017/blog)
db.blog.find()

所以db 已经指的是正确的数据库。而不是blog,而是放置集合名称,而不是数据库名称。

db.articles.find()

答案 1 :(得分:3)

Mongo shell将在启动测试数据库时连接,您需要更改数据库,然后在您的集合上执行find:

use blog
db.articles.find()

答案 2 :(得分:1)

首先选择数据库,然后在集合上找到

use blog
db.articles.find()