如何通过动态使用refs在本机中应用css属性

时间:2015-08-03 06:55:48

标签: xcode reactjs ios-simulator react-native refs

这是我的实例 我需要获取登录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>)
}
})`

1 个答案:

答案 0 :(得分:0)

你可以这样做:

render: function() {
    if(this.props.show) {
        return (<View ref="login">
              <Text>Abc</Text>
              <Text>123</Text>
            </View>)
    } else {
        return null;
    }
}