我在我的反应原生代码中导入了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);
}