react-native:使用条件渲染时的内存

时间:2019-05-01 03:30:48

标签: react-native

例如,我有一个View,在这个View中,我们有另一个View2是有条件渲染的。因此,如果我将这个View2显示和隐藏1000次,会影响内存吗?

<View>
{condtion && <View><Text>2<Text><View>
<View>

1 个答案:

答案 0 :(得分:0)

第一个reactreact-native对于类如何相互反应有不同的概念。 here is more details about that

此外,您可以使用redux或其他mobix flux之类的语句管理器库,而另一种替代解决方案可以使用props在您可以创建的主渲染函数中进行编码/编写这样的组件

<ChangeTextComponent condition={you_condition}/> 

更改时,您仅条件渲染ChangeTextComponent组件渲染。

class AnotherPage_Test extends Component {

  render() {
    return (
        <View>
          <ChangeTextComponent condition={you_condition}/> 
        </View>
    )
  }

}