Ho il seguente componente ( 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>
)
}
};
Prima di utilizzare ECMAScript6 tutto andava bene, ora ricevo 1 errore, 1 avviso e ho una domanda di follow-up:
Errore: errore di tipo non rilevato: impossibile leggere la proprietà "otherChecked" di null
Avvertenza: getInitialState è stato definito su RadioOther, una semplice classe JavaScript. Questo è supportato solo per le classi create usando React.createClass. Intendevi invece definire una proprietà demaniale?
Qualcuno può vedere dove si trova l'errore, so che è dovuto all'istruzione condizionale nel DOM ma a quanto pare non sto dichiarando correttamente il suo valore iniziale?
Devo rendere statico getInitialState
Dov'è il posto appropriato per dichiarare i miei proptypes se getInitialState non è corretto?
AGGIORNARE:
RadioOther.propTypes = {
name: React.PropTypes.string,
other: React.PropTypes.bool,
options: React.PropTypes.array }
module.exports = RadioOther;
@ssorallen, questo codice:
constructor(props) {
this.state = {
otherChecked: false,
};
}
produce "Uncaught ReferenceError: this is not defined"
, e mentre sotto lo corregge
constructor(props) {
super(props);
this.state = {
otherChecked: false,
};
}
ma ora, facendo clic sull'altro pulsante ora si genera un errore:
Uncaught TypeError: Cannot read property 'props' of undefined
onChange={this.onRadChange}
,this
non si fa riferimento all'istanza quandoonRadChange
viene chiamata. Hai bisogno di callback legano inrender
o farlo nel costruttore:onChange={this.onRadChange.bind(this)}
.