无法在快递中的mongo数据库中输入数据

时间:2016-03-02 09:00:56

标签: mongodb express mongoose-schema

router.get('/wiki/:topicname', function(req, res, next) {
    var topicname = req.params.topicname;
    console.log(topicname);




    summary.wikitext(topicname, function(err, result) {
            if (err) {
                return res.send(err);
            }
            if (!result) {
                return res.send('No article found');
            }
            $ = cheerio.load(result);

            var db = req.db;
            var collection = db.get('try1');
            collection.insert({ "topicname" : topicname, "content": result }, function (err, doc){
                if (err) {
                    // If it failed, return error
                    res.send("There was a problem adding the information to the database.");
                }
                else {
                    // And forward to success page
                    res.send("Added succesfully");
                }
            });

      });

使用此代码,我试图将从维基百科中获取的内容添加到集合try1中。显示消息"成功添加" 。但收藏似乎是空的。数据未插入数据库

2 个答案:

答案 0 :(得分:1)

数据必须存在,mongodb默认具有{w:1,j:true}写入关注选项,因此如果要插入任何文档,如果文档是真正插入的话,它只返回没有错误。

你应该考虑的事情:

- 不要使用insert函数,它的depricated使用insertOne,insertMany或bulkWrite。参考:http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#insert

- insert方法回调有两个参数。如果出现错误和结果则出错。结果对象有几个属性可以用于插入结果测试之后,如:result.insertedCount将返回插入文档的数量。

因此,根据您的代码中的这些,您只测试错误,但您可以插入零文档而不会出错。

另外我不清楚你从哪里获得数据库名称。您的代码中是否正确?您确定已连接到要使用的数据库吗?

var db = req.db;

此外,您不必使用"在你的插入方法中。插入内容应如下所示:

col.insertOne({topicname : topicname, content: result}, function(err, r) {
    if (err){
        console.log(err);
    } else {
        console.log(r.insertedCount);
    }
});

答案 1 :(得分:0)

以正确的路径启动您的mongod服务器,即与检查收集内容的路径相同的路径。

sudo mongod --dbpath <actual-path>