Domande taggate «react-props»


1
Reagisci foreach in JSX
Ho un oggetto che desidero trasmettere tramite REACT question = { text: "Is this a good question?", answers: [ "Yes", "No", "I don't know" ] } e il mio componente di reazione (tagliato), è un altro componente class QuestionSet extends Component { render(){ <div className="container"> <h1>{this.props.question.text}</h1> {this.props.question.answers.forEach(answer => { console.log("Entered"); …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.