PropTypes与DefaultProps
Posted nothingness
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PropTypes与DefaultProps相关的知识,希望对你有一定的参考价值。
文档连接:https://reactjs.org/docs/typechecking-with-proptypes.html
PropTypes:就是用来验证组件实例的属性是否符合要求,PropTypes 告诉 React,这个 title 属性是必须的,而且它的值必须是字符串。
defaultProps :方法可以用来设置组件属性的默认值。
1 import React,{Component} from ‘react‘; 2 import PropsTypes from ‘prop-types‘; //引入 3 4 class todoitem extends Component{ 5 constructor(props){ 6 super(props); 7 this.handleClick = this.handleClick.bind(this) 8 } 9 10 render(){ 11 const { item, content } = this.props 12 return ( 13 <li onClick={this.handleClick}>{ content }---{ item }</li> 14 ) 15 } 16 17 handleClick(){ 18 const { delitem ,index } = this.props 19 delitem( index); 20 } 21 } 22 // propTypes当内容为空就不检测 ,添加isRequired就变为必填 23 todoitem.propTypes = { 24 content:PropsTypes.string.isRequired, 25 item: PropsTypes.string, 26 delitem: PropsTypes.func, 27 index: PropsTypes.number 28 } 29 //defaultProps配置默认值,当没有传入值就显示为设置的默认值 30 todoitem.defaultProps ={ 31 content:‘没有传入值‘ 32 } 33 export default todoitem;
以上是关于PropTypes与DefaultProps的主要内容,如果未能解决你的问题,请参考以下文章
P16:React高级-PropTypes校验传递值,使用默认值 defaultProps
[React] Define defaultProps and PropTypes as static methods in class component