2017-09-03 60 views

回答

3

如果您使用isRequired定義PropType,那麼當您使用該組件而不傳遞該道具時,React將發出警告。

// -> Warning: onChoose is required but not provided 
<Component value={val} isChosen={true} /> 

如果不定義它,財產被認爲是可選的,如果你沒有通過道具不顯示警告。

// -> No warnings, since the props are not required. 
<Component />