Ini harus cukup fleksibel untuk sebagian besar kebutuhan:
function dotNotate(obj,target,prefix) {
target = target || {},
prefix = prefix || "";
Object.keys(obj).forEach(function(key) {
if ( typeof(obj[key]) === "object" && obj[key] !== null ) {
dotNotate(obj[key],target,prefix + key + ".");
} else {
return target[prefix + key] = obj[key];
}
});
return target;
}
Jalankan di excludesFields
. Anda variabel seperti ini:
dotNotate(excludeFields);
Ini mengembalikan struktur saat ini:
{ "Contact.Address" : 0, "Contact.Phone" : 0 }
Jadi Anda bahkan dapat melakukannya, sebaris:
things.findOne({}, {fields: dotNotate(excludeFields) })
Atau berikan sebagai proyeksi:
var projection = { "fields": {} };
dotNotate(excludeFields,projection.fields);
things.findOne({}, projection);
Bekerja dengan baik di semua kedalaman dan bahkan dengan array secara esensial, kecuali jika Anda membutuhkan operator seperti $push
.