获得像
这样的例外"不变违规:预计onMountComponent()将触发 在它之前的孩子将其包含在onSetChildren()"
中
在另一个组件中调用一个组件,如
const Forms = this.props.Forms.map(Form=> {
return(
<table className ="tableN table table-striped table-bordered" key = {Form.get('uid')}>
<thead style={{fontSize:'9pt'}}>
<tr>
<td>
Subject:
</td>
</tr>
</thead>
<tbody>
<tr>
<td>
<label>Form details:</label>
<SomeForm Form={Form}/>
</td>
</tr>
</tbody>
</table>
)
})
SomeForm是另一个组件 可能导致此错误的原因是什么???