var Works = function welcome(props) {
return <h1> Hello, {props.name} </h1>;
}
/*function welcome() {
return <h1>Hello, {this.props.name}</h1>;
}*/
const element = (<div>
<Works name="Luffy" />
</div>);
ReactDOM.render(
element,
document.getElementById('root')
);
如果我更換了與註釋部分,它沒有道具傳遞給它的工作原理組件,它提供了錯誤,我需要知道爲什麼會發生在那裏,而使用類我們直接使用。道具。爲什麼不在這裏?Reactjs道具是不是工作正常
,因爲它是**無狀態的功能組件**檢查[** SO DOC獲取更多詳細信息**](https://stackoverflow.com/documentation/reactjs/6588/stateless-functional-component s/28223 /無狀態功能組件#t = 201707201028091144259)也檢查[** React DOC **](https://facebook.github.io/react/docs/components-and-props.html#functional-和類組件) –