我正在学习 ReactJS,我正在尝试使用反应组件创建一个简单的测验。我有三个组件:
FinalDiv——父组件
- 问题:显示问题
- 答案:显示该问题的选项
两者都是FinalDiv的子组件
为了计算正确和错误的答案并转到下一个问题,我正在使用方法处理器。
我的问题是我无法从Answer组件中获取所选选项的值。选项的值存储在Answer的capvalue属性中。
到目前为止,我已经尝试 event.target.value 在处理器方法中访问该值。但是在控制台中打印时它给出了未定义的。
我也试过this.capvalue。但同样的结果。
请注意,在渲染之前打印时它会给出正确的值,但是在处理器方法中打印时会给出未定义的值,因此我无法检查所选答案是否正确。请参阅代码中的 2 条注释:
import React, {Component} from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import * as serviceWorker from './serviceWorker';
const questionBoxStyle = {
backgroundColor : 'cyan',
textAlign : 'center',
width : '30%',
height : '50px',
marginLeft : '35%',
marginTop : '50px',
marginBottom : '50px'
}
const btnBoxStyle = {
backgroundColor : 'orange',
textAlign : 'center',
width : '30%',
height : '50px',
marginLeft : '35%',
}
class Question extends Component {
render() {
return(
<div style={this.props.style}>
What is the capital of {this.props.country} ?
</div>
)
}
}
class Answer extends Component {
render() {
return(
<button onClick={this.props.doOnClick} style={this.props.style}>
<h3>{this.props.capvalue}</h3>
</button>
)
}
}
class FinalDiv extends Component {
constructor(props) {
super(props);
this.state = {
oq : [
{
q : 'India',
op : ['Delhi','Mumbai','Kolkata','Chennai'],
correct : 'Delhi'
},
{
q : 'USA',
op : ['DC','New York','Chicago','LA'],
correct : 'DC'
},
{
q : 'UK',
op : ['Plymouth','London','Manchester','Derby'],
correct : 'London'
},
{
q : 'Germany',
op : ['Dortmund','Frankfurt','Berlin','Munich'],
correct : 'Berlin'
}
],
correct : 0,
incorrect : 0,
currIndex : 0
}
this.processor = this.processor.bind(this);
}
processor(event) {
// prints undefined in below line
console.log('selected: '+event.target.capvalue+' -- actual answer: '+this.state.oq[this.state.currIndex].correct)
if(this.capvalue === this.state.oq[this.state.currIndex].correct) {
this.setState({
correct : this.state.correct+1,
})
} else {
this.setState({
incorrect : this.state.incorrect+1,
})
}
if(this.state.currIndex === 3) {
this.setState({
currIndex : 0
})
} else {
this.setState({
currIndex : this.state.currIndex+1
})
}
}
render() {
return(
<div>
<Question style={questionBoxStyle} country=
{this.state.oq[this.state.currIndex].q}/>
{
this.state.oq[this.state.currIndex].op.map((value, index)
=> {
// if i try to print the value here, it prints correctly
console.log('current index: '+this.state.currIndex+
' -- correct: '+this.state.correct+' -- incorrect: '+this.state.incorrect)
return <Answer key={index} style={btnBoxStyle}
capvalue={value} doOnClick={this.processor}/>
})
}
<div style={questionBoxStyle}> <h2> Correct :
{this.state.correct} </h2> </div>
<div style={questionBoxStyle}> <h2> InCorrect :
{this.state.incorrect} </h2> </div>
</div>
)
}
}
ReactDOM.render(<FinalDiv />, document.getElementById('root'));
serviceWorker.unregister();
我的猜测是处理器方法无法访问父组件(FinalDiv)中的Answer组件属性。所以需要在子组件本身(答案组件)中做一些事情,但我不知道是什么。我是否以某种方式将状态传递给子组件或其他东西?
如果您知道其他信息或问题格式是否错误,请告诉我。
我最近不受阻碍地提问。