我似乎無法找到一種方法來跳過迭代使用lodash _.map,考慮這個數組:checklist =['first','second','third','fourth','fifth','sixth']
我想映射通過它與步驟3例如,我試過這個代碼,但它不工作:lodash映射跳過迭代
_.map(checkList, function(value, key){
console.log('checkList', firstValue);
console.log('checkList1', secondValue);
console.log('checkList2', thirdValue);
}, 3)
預期輸出:checkList first , checkList second, checkList third, checkList fourth, checkList fifth, checkList sixth
但只有兩次迭代
東西,我可以這樣實現使用:
for(let i = 0; i< checkList.length; i+=3){
console.log('value', checkList[i]);
console.log('value1', checkList[i+1]);
console.log('value2', checkList[i+2]);
}
謝謝
謝謝,我預料到了這一點,但問題在於你不能在JSX中使用for循環裏面的React –
你可以在函數內部使用for循環,並在JSX中調用它。 –
工作,謝謝! –