敬爱的Rosen老师:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | class Layout extends React.Component { constructor(props) { super (props) } render() { return ( <div id= "wrapper" > { /* <TopNav /> <SideNav /> */ } { this .props.children} </div> ) } } |
关于这个counstrctor中为什么要传入props我还是不太明白..因为我试过如果不传这个props的时候这个props可以正常调用,但是您写的constrctor和super都传如Porps是为什么啊..