ComponentDidMount不使用此代码

时间:2017-04-20 12:30:07

标签: reactjs react-dom

ComponentDidMount is not working with this code

当我检查使用chrome中的react插件时,请不要在阵列中获取任何内容,请帮我弄清楚我错在哪里。我是reactjs的新手

2 个答案:

答案 0 :(得分:3)

componentDidMount lifecycle function应该以小写字符开头,而不是大写。

答案 1 :(得分:1)

确保使用具有有状态组件而非功能组件的生命周期事件

接下来,您的生命周期定义应在render()

之前定义