ฉันมีวัตถุที่ต้องการส่งออกทาง 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