查询本地用户集合

时间:2012-11-19 03:27:48

标签: meteor

当我在Meteor.users集合中检查特定用户时,我得到一个包含大量我不需要的信息的对象

var checkResults = Meteor.users.find({username: "aaa"});
    (checkResults) ? Meteor._debug(checkResults) : Meteor._debug("nothing");

结果:

collection
    Object { docs={...}, next_qid=   3 , queries={...}, more...}

current_snapshot
     null

docs
    Object { af8e9611-62fe-4024-81d4-1365e02992bb={...}, 5ba9f289-7fa6-4dd0-ae30-802f0c4e3138={...}}

             5ba9f289-7fa6-4dd0-ae30-802f0c4e3138 

    Object { _id= "5ba9f289-7fa6-4dd0-ae30-802f0c4e3138", username= "aaa" }

             af8e9611-62fe-4024-81d4-1365e02992bb

    Object { _id="af8e9611-62fe-4024-81d4-1365e02992bb", emails=[1], username= "ddd" }

next_qid
    3


paused
    false


queries
    Object { 1={...}, 2={...}}

_modifyAndNotify
    function()

find
    function()

findOne
    function()

insert
    function()

pauseObservers
    function()

remove
    function()

restore
    function()

resumeObservers
    function()

snapshot
    function()

update
    function()

__proto__
    Object { find=function(), findOne=function(), insert=function(), more...}

cursor_pos
    0


db_objects
    null


limit
    undefined


reactive
    true


skip
    undefined


sort_f
    null


_getRawObjects
    function()

_markAsReactive
    function()

count
    function()

fetch
    function()

forEach
    function()

map
    function()

observe
    function()

rewind
    function()

selector_f
    function()

__proto__
    Object { rewind=function(), forEach=function(), map=function(), more...}

我可以通过以下方式访问它们:

  checkResults.collection.docs[x].username 

但它不实用,因为我需要处理结果

无论如何都可以在没有额外信息的情况下获得查询的精确对象吗?

1 个答案:

答案 0 :(得分:3)

Meteor.users.findOne({username: 'aaa'})返回第一个用户文档(在这种情况下,它应该是唯一的)(如果存在),否则返回undefined。

如果您想在没有额外光标信息的情况下检索与查询匹配的所有内容,您可以执行Meteor.users.find({username: 'aaa'}).fetch()

之类的操作

请参阅http://docs.meteor.com/#findonehttp://docs.meteor.com#find