我有两种方法。
我可以 :
{isBtnEnabled ? (
<button onClick={this.props.someDispatchedAction} />
) : (
<button/>
)}
或者也许我应该使用:
someCoolName = () => {
if(isBtnEnabled)
this.props.someDispatchedAction();
}
...
<button onClick={this.someCoolName}>
哪种解决方案更好,为什么?