无法在 jsx 中传递 javascript(TypeError:无法读取未定义的属性‘props’)
2019-07-11
44
这是我的 app.js 文件
这是我的 Pokemon.js 文件
这是我收到的错误
有人能帮帮我吗?这有什么问题?我应该做哪些更改。谢谢
2个回答
this
关键字仅用于类组件。由于您的子
Pokecard
组件具有功能性,因此您只需要
props.name
Chris Sandvik
2019-07-11
为了让它运行
function Pokecard(props){
return (
<span>{props.name}</span>
)
}
我希望你得到它。
ma_dev_15
2019-07-11