我有使用react-router呈现的react类。我知道 React.cloneElement 用于将元素从父级传递给子级。但是为什么/什么 '&&' 运算符对这种语句做了什么:
class Users extends React.Component {
getInitialState() {
return {
page:0
}
},
foo(){
this.setState({'page':1})
}
render() {
return (
<div>
<h2>Users</h2>
{ this.props.children && React.cloneElement(this.props.children, {
foo:this.foo})
</div>
)
}
}
我想了解为什么我们在这里使用“&&”运算符。