在反應的次序呈現的,假設我有丙名稱輸入分量= A,B,C. 它們在順序呈現反應。組件未在狀態改變
render() {
return(
<Input name="A" />
<Input name="B" />
<Input name="C" />
);
}
然後我的狀態改變ç和甲的順序第一ç然後A. 組分甲和Ç重新呈現的順序第一甲然後Ç。它們沒有在狀態變化的順序呈現(ç然後甲)
參見下面給出的代碼段。 我發現了把其形式爲C
設定狀態 B的
設定狀態
的
設定狀態渲染的
渲染B的
C的渲染
class Input extends React.Component { \t componentWillMount() { \t \t \t this.props.addInput(this); \t } state = { \t error: false } check() { console.log("set state of", this.props.name) this.setState({ error: true }) } render() { \t console.log("Render of", this.props.name) return ( <input /> ); } } class Hello extends React.Component { constructor(props) { super(props); this.inputs = {}; } addInput(component) { this.inputs[component.props.name] = component; console.log(this.inputs); } checkAll() { const inputs = this.inputs; Object.keys(inputs).reverse().forEach(name => { inputs[name].check() }); } render() { return ( \t <div> <Input addInput={(c) => this.addInput(c)} name="A"/> <Input addInput={(c) => this.addInput(c)} name="B"/> <Input addInput={(c) => this.addInput(c)} name="C"/> <button onClick={() => this.checkAll()}>click here</button> </div> ); } } ReactDOM.render( <Hello initialName="World"/>, document.getElementById('container') );
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.js"></script> <div id="container"> <!-- This element's contents will be replaced with your component. --> </div>
您必須包含相關的代碼部分才能重現問題。 –
嗨,我只是想知道反應組件渲染的順序。 – PranavPinarayi
@YuryTarabanko添加代碼片段請檢查 – PranavPinarayi