我写了一个箭头函数,但是在编译时没有定义函数

时间:2019-01-05 03:20:03

标签: reactjs

我不知道为什么它没有定义,我想我已经定义了, 当编译'renderMenu'时未定义no-undef时, 这样的代码, 导出默认类NavLeft扩展了组件{

from bs4 import BeautifulSoup

# Define the code
page_source = '<body><h1>Hello</h1></body>'

# Parse it using Beautiful Soup
soup = BeautifulSoup(page_source , 'lxml')

# Search for the result by the tag name
table = soup.findAll('name')

}

1 个答案:

答案 0 :(得分:0)

以下更改将解决此问题 更改

  componentWillMount()

收件人

  componentDidMount()

然后改变

 renderMenu = function(data){

收件人

 renderMenu = data =>{