react 中一些知识点--defaultProps、prop-types、context

1、defaultProps:初始化外界属性值 static defaultProps = { initCount: 0 // 若是外界没有传递 initCount,则会将其值初始化为0 } render() { return ( <div> 当前数量:{this.props.initCount} </div> ) } 静态属性 defaultProps:在组件建立以前,会先
相关文章
相关标签/搜索