Ловлю ошибку
Warning: A component is changing an uncontrolled input of type radio to be controlled. Input elements should not switch from uncontrolled to controlled (or vice versa). Decide between using a controlled or uncontrolled input element for the lifetime of the component. More info: https://fb.me/react-controlled-components
По ссылке выше есть не плохой пример с
event.preventDefault();
,
но как быть, если помимо
event
мне нужно передать еще параметры?
class Question extends React.Component {
render() {
return(
<button className="btn btn2 exam-question__btn exam-question__btn-submit"
onClick={this.handleClickAnswerCheck.bind(this, param1, param2)}>Ответить</button>
)
}
handleClickAnswerCheck = (param1, param2) => {
let answer = document.getElementsByName('q'+param1);
//answer - это input type="radio"
//он и вызывает ошибку при клике на button
//как запустить здесь
//event.preventDefault(); или event.target...
//?
}
}