我有一个奇怪的,这对你们来说可能很容易...... 我在我的组件中构建一个方法来为输入生成HTML。
所以在我的渲染中我使用{this.generateInput('q1')}
以下是我的方法,所以我想问的问题是' q1'替换'问题'在下面的const和console.log中......
generateInput( question ) {
if (this.props.next) {
const label = this.props.question;
console.log( this.props.question.props.details.form_label );
}
}