獲得子組件數據我有一個反應成分象下面這樣:陣營:從父
<Parent>
<Child />
<button type="button" />
</Parent>
<Child />
中有一個input[type="file"]
表單控件。
當我點擊<Parent />
按鈕,我要上傳的<Child />
與阿賈克斯的文件,
我怎麼能訪問內部<Child />
的input[type="file"]
?
我嘗試使用refs
<Parent>
<Child ref="child"/>
<button type="button" />
</Parent>
,這樣我可以通過寫
this.refs.child.refs.file
訪問input
,但我不認爲這是最好的做法....
你的情況,你不需要'getInitialState'在'Child'組件 –