我有一些要使用Array.prototype.map
转换的数据。但是,在map函数中,外部函数调用可能会引发错误。我想捕获此错误,而不是将该特定对象添加到返回的数组中。目前,我只是返回未定义的值,然后使用Array.prototype.filter
清除未定义的值,但这似乎是一种肮脏的方法。
为了澄清,我正在寻找此功能:
['apple','pear','banana', 'peach'].map(function(fruit){
if (fruit === 'apple') {
return undefined;
}
return 'I love to eat ' + fruit;
});
// ['I love to eat pear', 'I love to eat peach', 'I love to eat banana']
有没有现成的实现方案?我只是以错误的方式来做这件事吗?
最佳答案
更具可读性的方式将是;
['apple','pear','banana', 'peach'].filter(function(fruit) {
return fruit === 'apple';
}).map(function(fruit) {
return 'I love eating ' + fruit;
})
具有箭头功能和模板字符串;['apple','pear','banana', 'peach']
.filter(fruit => fruit === 'apple')
.map(fruit => `I love eating ${fruit}`)