0

当我检查 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 

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

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

4

1 回答 1

3

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

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

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

于 2012-11-20T09:08:10.567 回答