无法调用组件中的组件

时间:2016-09-08 14:55:45

标签: javascript reactjs

获得像

这样的例外
  

"不变违规:预计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:&nbsp;&nbsp;&nbsp;
                    </td>
                </tr>
            </thead>
            <tbody>
               <tr>
                   <td>
                      <label>Form details:</label>
                      <SomeForm Form={Form}/>
                   </td>
               </tr>
            </tbody>
       </table>
     )
 })

SomeForm是另一个组件 可能导致此错误的原因是什么???

0 个答案:

没有答案