无法在jsx中传递javascript(TypeError:无法读取未定义的属性“ props”)

时间:2019-07-11 18:08:17

标签: reactjs jsx

这是我的app.js文件

enter image description here

这是我的Pokemon.js文件 enter image description here

这是我得到的错误 enter image description here

有人可以帮助我吗?这怎么了我应该做些什么改变。谢谢

2 个答案:

答案 0 :(得分:2)

this关键字仅在类组件中使用。由于您的子级Pokecard功能正常,因此您只需要props.name

答案 1 :(得分:0)

使其运行

function Pokecard(props){
   return (
      <span>{props.name}</span>
   )
}

我希望你能得到它。