У мене є такий компонент ( radioOther.jsx
):
'use strict';
//module.exports = <-- omitted in update
class RadioOther extends React.Component {
// omitted in update
// getInitialState() {
// propTypes: {
// name: React.PropTypes.string.isRequired
// }
// return {
// otherChecked: false
// }
// }
componentDidUpdate(prevProps, prevState) {
var otherRadBtn = this.refs.otherRadBtn.getDOMNode();
if (prevState.otherChecked !== otherRadBtn.checked) {
console.log('Other radio btn clicked.')
this.setState({
otherChecked: otherRadBtn.checked,
});
}
}
onRadChange(e) {
var input = e.target;
this.setState({
otherChecked: input.checked
});
}
render() {
return (
<div>
<p className="form-group radio">
<label>
<input type="radio"
ref="otherRadBtn"
onChange={this.onRadChange}
name={this.props.name}
value="other"/>
Other
</label>
{this.state.otherChecked ?
(<label className="form-inline">
Please Specify:
<input
placeholder="Please Specify"
type="text"
name="referrer_other"
/>
</label>)
:
('')
}
</p>
</div>
)
}
};
До використання ECMAScript6 все було добре, тепер я отримую 1 помилку, 1 попередження, і у мене є наступне питання:
Помилка: Uncaught TypeError: Неможливо прочитати властивість 'otherChecked' null
Попередження: getInitialState було визначено на RadioOther, простому класі JavaScript. Це підтримується лише для класів, створених за допомогою React.createClass. Ви мали натомість визначити власність держави?
Хтось може бачити, де лежить помилка, я знаю, що це пов’язано з умовною заявою в DOM, але, мабуть, я не декларую своє початкове значення правильно?
Чи варто робити getInitialState статичним
Де відповідне місце для оголошення моїх підказок, якщо getInitialState невірний?
ОНОВЛЕННЯ:
RadioOther.propTypes = {
name: React.PropTypes.string,
other: React.PropTypes.bool,
options: React.PropTypes.array }
module.exports = RadioOther;
@ssorallen, цей код:
constructor(props) {
this.state = {
otherChecked: false,
};
}
виробляє "Uncaught ReferenceError: this is not defined"
, а внизу виправляє це
constructor(props) {
super(props);
this.state = {
otherChecked: false,
};
}
але тепер, натиснувши на іншу кнопку, тепер виникає помилка:
Uncaught TypeError: Cannot read property 'props' of undefined
onChange={this.onRadChange}
,this
не відноситься до примірника , колиonRadChange
викликається. Ви повинні зв'язати зворотні виклики вrender
або зробити це в конструкторі:onChange={this.onRadChange.bind(this)}
.