我正在处理一个特定而简单的案例。我需要一些帮助,因为我似乎无法找到解决方案。
我在javascript类中为MongoDB创建了一个简单的Schema和Model。
this.UserSchema = new this.Schema({
UserId: { type: String },
IsToggle: { type: Boolean}
});
this.CalendarViewUserSchema = new this.Schema({
_id: { type: this.Schema.ObjectId },
OwnerId: { type: String },
UserList: [ this.UserSchema ]
});
this.CalendarViewUser = this.mongoose.model('CalendarViewUsers',this.CalendarViewUserSchema);
这是在构造函数中,我已经有很多数据库交互工作,但我无法让这个工作。
我将此方法称为添加新文档:
AddCalendarViewUser : function(Id, UserToAddId){
NewUser = { UserId : UserToAddId, IsToggle : false };
this.CalendarViewUser.update(
{ OwnerId : Id },
{
$set: { OwnerId : Id },
$push: { UserList : NewUser }
},
{upsert:true},
function(err){
if(err) {console.log(err);}
else {console.log('Success');}
}
);
}, // this comma just introduces the next method.
这很好用。我可以看到使用Mongo Explorer正确创建文档,如果我使用.find()从集合中检索所有内容,它就会显示出来。
然后,我尝试用以下内容查找插入的文档:
FindCalendarViewUser : function(Id){
this.CalendarViewUser.findOne(
{ OwnerID : Id },
function(err,result){
if(err) {console.log(err);}
else{console.log(result);}
}
);
}
这里返回result = null。
“Id”参数是两种方法中的String,就像Schema中的“OwnerId”一样。
我做错了什么?
“OwnerId”和“Id”都是相同的。我也尝试将两者都转换为ObjectId,但没有成功。
很抱歉代码格式化。
编辑:
基本上,我可以使用_id字段找到Document:
{ _id : '4fb0d1702edfda0104fc2b9f'}
但我找不到OwnerId字段:
{ OwnerId : '4f55e1a6c2c7287814000001'}
这些值直接来自数据库,因此它们对应于实际存储的值。
编辑2:
我只是弄清楚如果我手动插入值:
$set: { OwnerId : '4f55e1a6c2c7287814000001' }
然后用完全相同的字符串搜索,它返回文档!
this.CalendarViewUser.findOne(
{ OwnerID : '4f55e1a6c2c7287814000001'}
...
所以我猜它是在文档的OwnerID字段中插入某种垃圾,或者与字段的Type有某种不兼容性。我会发布结果。
答案 0 :(得分:1)
错字?
if(err) {console.log(err);}
else{console.log(err);}
}
答案 1 :(得分:1)
事实证明,FindCalendarViewUser函数的回调函数需要对其自身进行实例化...它现在可以正常工作,只需添加那些parentesis ...
FindCalendarViewUser : function(Id){
this.CalendarViewUser.findOne(
{ OwnerID : Id },
(function(err,result){
if(err) {console.log(err);}
else{console.log(result);}
})
);
}
这是工作示例。耶稣基督为什么。我可以发誓我在其他场合没有使用过。
编辑:现在它正在没有实施。对不起。它必须是我在代码周围的一些小问题。我找不到它。