在render函数中定义的return内的react映射中调用函数

时间:2018-08-06 17:38:06

标签: javascript reactjs

我在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)... 我知道我似乎很蠢,但是我尝试了其他方法。

0 个答案:

没有答案