คำถามติดแท็ก react-props

9
เข้าถึงอุปกรณ์ประกอบฉากภายในเครื่องหมายคำพูดใน React JSX
ใน JSX คุณจะอ้างอิงค่าจากpropsจากภายในค่าแอตทริบิวต์ที่ยกมาได้อย่างไร ตัวอย่างเช่น: <img className="image" src="images/{this.props.image}" /> ผลลัพธ์ HTML ที่ได้คือ: <img class="image" src="images/{this.props.image}">

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

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.