摘要: 当组件的state或者props发生改变的时候,render函数就会重新执行 当父组件的render函数被运行时,它的子组件render都将被重新运行一次 阅读全文
posted @ 2020-06-27 23:22 雪糕战士 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 文档连接:https://reactjs.org/docs/typechecking-with-proptypes.html PropTypes:就是用来验证组件实例的属性是否符合要求,PropTypes 告诉 React,这个 title 属性是必须的,而且它的值必须是字符串。 defaultPr 阅读全文
posted @ 2020-06-27 23:11 雪糕战士 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 1 父传子 2 父组件: 赋值给一个属性 子组件:return {this.props.item} 3 子组件通过this.props.属性名,这样的方式获取传递值 4 5 子传父 6 父组件:<Todoitem delitem = {this.handleItemDel} /> 7 父组件通过de 阅读全文
posted @ 2020-06-27 19:48 雪糕战士 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 奇数行偶数行设置特定样式odd表示奇数行,even表示偶数行; tr:nth-child(odd); .table-striped > tbody > tr:nth-child(odd) { background-color: #f9f9f9; } css设置三角形 div {width: 0; h 阅读全文
posted @ 2020-06-27 18:05 雪糕战士 阅读(307) 评论(0) 推荐(0) 编辑