Điều này phải đủ linh hoạt cho hầu hết các nhu cầu:
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;
}
Chạy trên excludesFields
của bạn biến như vậy:
dotNotate(excludeFields);
Nó trả về cấu trúc hiện tại:
{ "Contact.Address" : 0, "Contact.Phone" : 0 }
Vì vậy, bạn thậm chí có thể làm, nội dòng:
things.findOne({}, {fields: dotNotate(excludeFields) })
Hoặc cung cấp dưới dạng một phép chiếu:
var projection = { "fields": {} };
dotNotate(excludeFields,projection.fields);
things.findOne({}, projection);
Hoạt động tốt ở tất cả các độ sâu và ngay cả với các mảng theo cách cần thiết, trừ khi bạn cần các toán tử như $push
.