state 和 props 主要的差異在於 props 是不可變的,而 state 可以根據與使用者互動來改變。

React Props 語法

state 和 props 主要的差異在於 props 是不可變的,而 state 可以根據與使用者互動來改變。

React Props 範例

var HelloMessage = React.createClass({
  render: function() {
    return <h1>Hello {this.props.name}</h1>;  }}); 
ReactDOM.render(
  <HelloMessage name="php.cn" />,  document.getElementById('example')