3

我有一个带有 MongoDB 的 Node.js 应用程序
我的客户集合架构是这样的:

{
    '_id' : 1234341264876876143 , 
    'profile':{
        'name':  'bob',
        'email': 'bob@example.com',
        'DOB':   '13th April 1976'
    }
}

我只想从我的 Node 应用程序中找到特定客户字段profile.email

var field_name = "email";   // field_name selected programmatically from an array
db.collection('customers').find(
    {'_id':8965698756579084} , 
    {'profile.' + field_name :true}    // expecting it to become 'profile.email' 
)

但是,它给出了以下错误:

    {'profile.' + field_name :true}
                ^
SyntaxError: Unexpected token +
    at Module._compile (module.js:437:25)
    at Object.Module._extensions..js (module.js:467:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:362:17)
    at require (module.js:378:17)

如何为我想要检索的特定字段动态生成字符串?

4

1 回答 1

4

将投影组件构造为单独的步骤:

var projection = {};
projection['profile.' + field_name] = true;
db.collection('customers').find( {'_id':8965698756579084}, projection );
于 2013-06-23T19:52:56.327 回答