这是我的实例 我需要获取登录div并使用refs隐藏它 怎么做到这一点?
var Text=React.createClass({
componentDidMount:function(){
console.log(this.refs.login.getDOMNode());
},
render:function(){
return (<View ref="login">
<Text>Abc</Text>
<Text>123</Text>
</View>)
}
})`
答案 0 :(得分:0)
你可以这样做:
render: function() {
if(this.props.show) {
return (<View ref="login">
<Text>Abc</Text>
<Text>123</Text>
</View>)
} else {
return null;
}
}