react 中一些知識點--defaultProps、prop-types、context

1、defaultProps:初始化外界屬性值 static defaultProps = { initCount: 0 // 若是外界沒有傳遞 initCount,則會將其值初始化爲0 } render() { return ( <div> 當前數量:{this.props.initCount} </div> ) } 靜態屬性 defaultProps:在組件建立以前,會先
相關文章
相關標籤/搜索