最佳答案
我想知道是否有比使用 if 语句更好的方法来有条件地传递支持。
例如,现在我有:
var parent = React.createClass({
propTypes: {
editable: React.PropTypes.bool.isRequired,
editableOpts: React.PropTypes.shape({...})
},
render: function() {
if(this.props.editable) {
return (
<Child editable={this.props.editableOpts} />
);
} else {
// In this case, Child will use the editableOpts from its own getDefaultProps()
return (
<Child />
);
}
}
});
有没有不使用 if 语句的方法来写这个代码?我正在考虑类似于 JSX 中的 inline-if 语句的东西:
var parent = React.createClass({
propTypes: {
editable: React.PropTypes.bool.isRequired,
editableOpts: React.PropTypes.shape({...})
},
render: function() {
return (
<Child
{this.props.editable ? editable={this.props.editableOpts} : null}
/>
);
}
});
总结 : 我试图找到一种方法来为 Child
定义一个道具,但是传递一个值(或者做一些其他的事情) ,使得 Child
仍然从 Child
自己的 getDefaultProps()
中获取道具的值。