1
我有一個位置和名稱作爲字段的集合。爲什麼mongo不會返回所有的字段?
我創建索引中包含的貓鼬的名字,
eventSchema.index({name: 'text'});
,當我在robomongo運行它,它返回所有12場,
db.getCollection('_event').find({"location.country":"United States"})
但是當我上運行此robomongo,它只返回兩個字段的值,id和位置,
db.getCollection('_event').find({$text: {$search: "2017 Honda"}},{"location.country":"United States"})