屬性使用:
#鍵值對的使用
<HelloWorld name="Tim" />
# 展開語法使用,就是大括號中... 是將對象props屬性就行了一一對應寫法
# 意思就是這樣的寫法(<HelloWorld one="123" two=321 />)
var props = {
one: '123',
two: 321
}
<HelloWorld { ...props } /> or <HelloWorld { ...this.state } />
#第3種在組件外部使用屬性不建議使用,這樣違背了react的設計原則
var instance = React.render( <HelloWorld> </HelloWorld> ,document.body);
instance.setProps({name: "Tim"});