本文介绍了如何使用猫鼬 findOne的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下架构(抱歉它是在 coffeescript 中)

I have the below schema (apologies that it is in coffeescript)

Schema = mongoose.Schema

AuthS = new Schema
    auth:   {type: String, unique: true}
    nick:   String
    time:   Date
Auth = mongoose.model 'Auth', AuthS

我只想恢复一条肯定在我的数据库中的记录:

I simply want to recover one record which is definitely in my database:

Auth.findOne({nick: 'noname'}, function(obj) { console.log(obj); });

不幸的是,这总是记录 null.db.auths.findOne({nick: 'noname'}) 在 mongo shell 中总是返回一个值.到底是怎么回事?

Unfortunately this always logs null. db.auths.findOne({nick: 'noname'}) in mongo shell always returns a value. What is going on?

推荐答案

发现问题,需要改用function(err,obj):

Auth.findOne({nick: 'noname'}, function(err,obj) { console.log(obj); });

这篇关于如何使用猫鼬 findOne的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 18:07