当对象存在时,Mongoose findById为第一个对象返回null

时间:2014-09-04 22:56:48

标签: node.js mongoose tingodb nosql

Mongoose在数据库中为第一个对象_ID 0返回null,即使它存在。我可以使用类似的代码检索第一篇文章,但我无法检索第一个标签。我可以检索我的所有数据,但第一个帖子的第一个Tag,tag1除外。如果我添加带标签的第二篇文章:tag4,tag5和tag6,我可以检索第二篇文章的所有数据,包括tag4。如果我在后面的帖子中指向tag1,则无法检索它。

我做了一些搜索并知道返回null表示无法找到记录。我还尝试使用find和findOne以及findById并获得相同的结果。如果记录存在,我无法弄清楚我哪里出错了。我确信可能有更好的方法。

感谢您的帮助。

我正在使用mongoose,mongoose-simpledb和tungus和node-webkit。

保存标签:

$.each(tagArray, function(i, t) {
    var tags = db.Tags();
    tags.nextCount(function(err, count) {
        post.tags.push(count + i); //tag ID to post
    });
    tags.text= tagArray[i]; //tag text
    post.nextCount(function(err, count) {
        tags.posts.push(count); //post ID to tag
    });
    tags.save(function(err) {
        if (err) {throw err;}
        console.log('tag saved');
    });
});

查找标签:

$.each(results[i].tags, function(j, t) {
    db.Tags.findById(results[i].tags[j], function(err, tag) {
        if (err) {return console.error(err);}
        if (!tag) {return console.log('Could not find tag...');}
        postContent += '<a href="">' + tag.text + '</a> ';
    });
});

或者,如果我使用以下tag2,则返回tag1,而不是应该返回的tag1。

db.Posts.
    find({}).
    populate('tags').
    exec(function(error, post) {
        console.log(post[0].tags[0].text);
    });

标签模型

var ObjectId = require('mongoose-simpledb').Types.ObjectId;

exports.schema = {
    _id: Number,
    text: String,
    posts: [{type: ObjectId, ref: 'Posts', index: true}]
};

标记数据库

{"k":"0000000078","o":"0000000061","v":"001"}
{"_id":0,"_uid":1,"_dt":1409869458919,"_s":"c245621efdb176d3f4dd2db749590730"}
{"_id":0,"text":"Tag1","posts":[{"$wrap":"$oid","v":0}],"__v":0}
{"k":"0000000078","o":"0000000061","v":"001"}
{"_id":1,"_uid":1,"_dt":1409869458921,"_s":"80bc4453ee777de0177b27ba76ddc859"}
{"_id":1,"text":"Tag2","posts":[{"$wrap":"$oid","v":0}],"__v":0}
{"k":"0000000078","o":"0000000061","v":"001"}
{"_id":2,"_uid":1,"_dt":1409869458930,"_s":"12682b1c27ea57e8c09b87a2a6605510"}
{"_id":2,"text":"Tag3","posts":[{"$wrap":"$oid","v":0}],"__v":0}

在标签DB上使用find:

db.Tags.findOne({
    _id: '0'
}, function(err, result) {
    if (err) return console.error(err);
    console.dir('findOne: ' +result.text);
    //throws error - Cannot read property 'text' of null
});

db.Tags.
findById(0, function(err, tag) {
    if (err) return console.error(err);
    console.log('tag by id: ' + tag);
    //returns - null
});

db.Tags.
find({}).
exec(function(error, tag) {
    console.log("find:" + tag[0]);
    //returns - ( _id: 0, text: 'Tag1', _v: 0, posts: [0] )
    //correctly finding the tag but not by id
});

如果我更改这些查找函数以查找除第一个标记以外的任何标记,则会返回正确的信息。

1 个答案:

答案 0 :(得分:0)

问题原来是mongoose-simpledb。我不确定问题是mongoose-simpledb中的错误还是与tungus的冲突,但是&#34;相同&#34;删除mongoose-simpledb后,代码工作正常。