react设置组件参数默认值及参数类型
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
}

浙公网安备 33010602011771号