为什么此反应子组件属性值未定义?

时间:2019-07-05 07:02:07

标签: reactjs react-component react-state

我正在学习ReactJS,并且正在尝试使用react组件创建一个简单的测验。我有三个组成部分:

FinalDiv -父组件

  • 问题:显示问题
  • 答案:显示该问题的选项

两者都是 FinalDiv

的子组件

为了计算正确和不正确的答案并转到下一个问题,我正在使用方法 processor

我的问题是我无法从答案组件中获取所选选项的值。期权的价值存储在答案 capvalue 属性中。

到目前为止,我已经尝试使用event.target.value在 processor 方法中访问该值。但是在控制台中打印时,它会给出不确定的信息。

我也尝试过 this.capvalue 。但结果相同。

请注意,在渲染前打印时它会给出正确的值,但是在处理器方法中进行打印时,它会给出 Undefined 值,因此我无法检查如果选择的答案是正确的。查看代码中的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();

我的猜测是 processor 方法无法访问父组件(FinalDiv)中的 Answer 组件的属性。所以需要在子组件本身(Answer组件)中做一些事情,但是我不知道是什么。是否以某种方式将状态传递给子组件?

如果您知道其他信息或问题格式错误,请告诉我。

我最近不受阻碍地提问。

2 个答案:

答案 0 :(得分:1)

您需要从Answer组件中传递正确答案,

<button onClick={e => this.props.doOnClick(this.props.capvalue)} style={this.props.style}>
   <h3>{this.props.capvalue}</h3>
</button>

您的processor函数应该是

processor(capvalue) {
    console.log(
      'selected: ' +
        capvalue +
        ' -- actual answer: ' +
        this.state.oq[this.state.currIndex].correct,
    )
    if (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,
      })
    }
  }

Demo

答案 1 :(得分:1)

事件目标是Answer组件中的H3标签,它没有属性capvalue,因此,尝试读取

  

event.target.capvalue

返回未定义。您只需要更改

  

event.target.capvalue

  

event.target.innerHTML

,该代码将按预期工作。但是,这不是实现此目标的最佳方法,因此您应该采用另一种方法。我的头顶上是为答案分配唯一的ID,然后将正确答案的ID作为prop传递给Answer。