在更改方法上使用输入子进行反应控制父状态

时间:2017-01-09 18:48:34

标签: javascript reactjs

我有以下内容:

import React from 'react';
import {render} from 'react-dom';

class TShirt extends React.Component {
    render () {
        return <div className="tshirt">{this.props.name}</div>;
    }
}

class FirstName extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            submitted: false
        };
    }
    getName () {
        var name = this.refs.firstName.value;
        this.setState({ submitted: true }, function() {
          this.props.action(name);
        });
    }
    render () {
        return (
            <div>
                <h2>tell us your first name</h2>
                <form>
                    <input 
                        type="text"
                        ref="firstName"
                        onChange={this.getName.bind(this)}
                    />
                    <div className="buttons-wrapper">
                        <a href="#">back</a>
                        <button>continue</button>
                    </div>
                </form>
            </div>
        );
    }
}

class Nav extends React.Component {
    render () {
        return <p>navigation</p>;
    }
}

class App extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            name: ''
        };
    }
    getName (tshirt) {
        this.setState({ name:tshirt })
    }
    render () {
        return (
            <section>
                <Nav />
                <TShirt name={this.state.name} />
                <FirstName action={this.getName} />
            </section>
        );
    }
}

render(<App/>, document.getElementById('app'));

我想使用来自“FirstName”组件的onChange方法(使用props)更新“TShirt”组件。

我在包装器中有一个整体状态来控制一切,但是当我开始输入名称insdie输入时我得到这个错误:

未捕获的TypeError:this.setState不是函数

指的是:

getName (tshirt) {
    this.setState({ name:tshirt })
}

1 个答案:

答案 0 :(得分:1)

您必须将getName功能绑定到this

在你的构造函数中添加

this.getName = this.getName.bind(this);

您的构造函数应该看起来像

constructor(props) {
    super(props);
    this.state = {
        name: ''
    };
    this.getName = this.getName.bind(this);
}