我在render
方法中定义了一个函数。
并希望在渲染的return
方法中使用它。
问题是map
中有一个return
函数:
render(){
function detectNextLesson(lesson, tag){...}
}
return(
{
topics.map(function(tag){
return(
{detectNextLesson(tag[0].lesson_num, tag[0])}
);
});
}
);
,我得到这个错误:
Unexpected token, expected , (1469:41)...
我知道我似乎很蠢,但是我尝试了其他方法。