最佳答案
我有一个想要通过 React 输出的对象:
question = {
text: "Is this a good question?",
answers: [
"Yes",
"No",
"I don't know"
]
}
和我的反应组成部分(削减) ,是另一个组成部分
class QuestionSet extends Component {
render(){
<div className="container">
<h1>{this.props.question.text}</h1>
{this.props.question.answers.forEach(answer => {
console.log("Entered"); //This does ifre
<Answer answer={answer} /> //THIS DOES NOT WORK
})}
}
export default QuestionSet;
正如你可以从上面的片段看到,我试图插入一个数组的组件答案通过使用道具中的数组答案,它不迭代,但没有输出到 HTML。