我有一个TextArea对象,不允许输入新文本。最初,我在没有构造函数的情况下尝试了此操作,但是当我尝试调用on change方法时会获得区域,因为它未绑定到this。添加构造函数以绑定onChange方法使我无法输入文本。

        class TextAreaCounter extends React.Component{
            constructor(props) {
                super(props);
                this._textChange = this._textChange.bind(this);
            }
            getInitialState() {
                return {
                    text: this.props.text,
                };
            }
            _textChange(ev) {
                this.setState({
                    text: ev.target.value,
                });
            }
            render() {
                return React.DOM.div(null,
                    React.DOM.textarea({
                        value: this.props.text,
                        onChange: this._textChange,
                    }),
                    React.DOM.h3(null, this.props.text.length)
                );
            }
        }
        TextAreaCounter.PropTypes = {
            text: React.PropTypes.string,
        }
        TextAreaCounter.defaultProps = {
            text: '',
        }
        ReactDOM.render(
            React.createElement(TextAreaCounter, {
                text: "billy",
            }),
            document.getElementById("app")
        );

最佳答案

您应该将this.state.text作为值而不是this.props.text传递给您的文本区域。

关于javascript - Reactjs TextArea对象是只读的,而不是可变的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44217550/

10-09 18:09