“jsx else, jeśli instrukcja” Kod odpowiedzi

Jak używać, jeśli jeszcze w JSX w React

renderElement(){
   if(this.state.value == 'news')
      return <Text>data</Text>;
   return null;
}

render() {
    return (   
        <View style={styles.container}>
            { this.renderElement() }
        </View>
    )
}
Busy Bear

Dodanie statu w JSX

render() {
    return (   
        <View style={styles.container}>
            {this.state.value == 'news'? <Text>data</Text>: null }
        </View>
    )
}
Marty McFly

jsx else, jeśli instrukcja

render() {
  return <span>
    {this.props.conditionA ? "Condition A" 
      : this.props.conditionB ? "Condition B" 
      : "Neither"}
  </span>;
}
aus ogola

Odpowiedzi podobne do “jsx else, jeśli instrukcja”

Pytania podobne do “jsx else, jeśli instrukcja”

Więcej pokrewnych odpowiedzi na “jsx else, jeśli instrukcja” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu