props是常量不允许修改

React通过propTypes来设置参数类型。例:

Person.propTypes = {
 name:PropTypes.string.isRequired,//限制为必传字段
 age:PropTypes.number,
 sex: PropTypes.string,
}
简写(仅限类式组件):
static proTypes = {
 ...object
}

React通过propTypes来设置参数类型。例:

Person.defaultProps = {
 age:18,
 sex:"不男不女"
}
简写(仅限类式组件):
static defaultProps = {
 ...object
}