1、在需要验证的组件引入依赖包
import PropTypes from 'prop-types'
2、使用位置:
class testUnit extends PureComponent {
constructor(props) {
super(props);
this.state = { }
}
render(){
console.log("子组件渲染")
let {msg} = this.props
return(
<div style={
{padding:10}}>{msg}</div>
)
}
}
testUnit.propTypes={ // 在这里使用 类名.propTypes{ // 接收的值 }
msg: PropTypes.string
}
3、PropTypes提供了大量的验证器 如: