使用lodash转换的React Native代码中的变量未找到错误

时间:2017-10-12 12:03:11

标签: javascript react-native lodash

我在我的反应原生代码中导入了lodash。

import _ from 'lodash'

我在下面的代码中找不到变量'r',标有注释的行。

makeMarkedDates(){

             testDates={
                "2017-10-01": 1,
                "2017-10-04": 1,
                "2017-10-08": 1,
            };




            _.transform(testDates, (r, value, key) =>{
/*Getting error here=>*/                (r[key] || (r[key] = [])).push({ startingDay: true, color: '#FF0000', textColor: '#FFFFFF' }, { endingDay: true, color: '#FF0000', textColor: '#FFFFFF' })
            }, {}); 

        console.log(r);

        }

0 个答案:

没有答案