जबकि map
वस्तुओं की एक सूची से 'कॉलम' का चयन करने के लिए एक उचित समाधान है, यह एक नकारात्मक पक्ष यह है। यदि यह स्पष्ट रूप से जाँच नहीं किया गया है कि कॉलम मौजूद है या नहीं, तो यह एक त्रुटि फेंक देगा और (सबसे अच्छा) आपको प्रदान करेगा undefined
। मैं एक reduce
समाधान का विकल्प चुनूंगा , जो केवल संपत्ति की उपेक्षा कर सकता है या यहां तक कि आपको डिफ़ॉल्ट मान के साथ सेट कर सकता है।
function getFields(list, field) {
// reduce the provided list to an array only containing the requested field
return list.reduce(function(carry, item) {
// check if the item is actually an object and does contain the field
if (typeof item === 'object' && field in item) {
carry.push(item[field]);
}
// return the 'carry' (which is the list of matched field values)
return carry;
}, []);
}
jsbin उदाहरण
यह तब भी काम करेगा जब प्रदान की गई सूची में से कोई एक वस्तु नहीं है या इसमें फ़ील्ड शामिल नहीं है।
यह भी अधिक लचीला बनाया जा सकता है एक डिफ़ॉल्ट मूल्य पर बातचीत करके एक वस्तु एक वस्तु नहीं होनी चाहिए या फ़ील्ड में शामिल नहीं होनी चाहिए।
function getFields(list, field, otherwise) {
// reduce the provided list to an array containing either the requested field or the alternative value
return list.reduce(function(carry, item) {
// If item is an object and contains the field, add its value and the value of otherwise if not
carry.push(typeof item === 'object' && field in item ? item[field] : otherwise);
// return the 'carry' (which is the list of matched field values)
return carry;
}, []);
}
jsbin उदाहरण
यह मानचित्र के साथ समान होगा, क्योंकि लौटे हुए सरणी की लंबाई प्रदान की गई सरणी के समान होगी। (जो मामले में एक map
से थोड़ा सस्ता है reduce
):
function getFields(list, field, otherwise) {
// map the provided list to an array containing either the requested field or the alternative value
return list.map(function(item) {
// If item is an object and contains the field, add its value and the value of otherwise if not
return typeof item === 'object' && field in item ? item[field] : otherwise;
}, []);
}
jsbin उदाहरण
और फिर सबसे लचीला समाधान है, जो आपको वैकल्पिक मूल्य प्रदान करके दोनों व्यवहारों के बीच स्विच करने देता है।
function getFields(list, field, otherwise) {
// determine once whether or not to use the 'otherwise'
var alt = typeof otherwise !== 'undefined';
// reduce the provided list to an array only containing the requested field
return list.reduce(function(carry, item) {
// If item is an object and contains the field, add its value and the value of 'otherwise' if it was provided
if (typeof item === 'object' && field in item) {
carry.push(item[field]);
}
else if (alt) {
carry.push(otherwise);
}
// return the 'carry' (which is the list of matched field values)
return carry;
}, []);
}
jsbin उदाहरण
जैसा कि ऊपर दिए गए उदाहरण (उम्मीद है) इस काम के तरीके पर कुछ प्रकाश डालते हैं, फ़ंक्शन को उपयोग करके Array.concat
फ़ंक्शन को थोड़ा छोटा करते हैं ।
function getFields(list, field, otherwise) {
var alt = typeof otherwise !== 'undefined';
return list.reduce(function(carry, item) {
return carry.concat(typeof item === 'object' && field in item ? item[field] : (alt ? otherwise : []));
}, []);
}
jsbin उदाहरण
var foos = objArray.pluck("foo");
।