10

所以我开始将我的应用程序从 ES2015 转换为使用 React 的 ES6。

我有一个父类和一个像这样的子类,

export default class Parent extends Component {
    constructor(props) {
        super(props);
        this.state = {
            code: ''
        };
    }

    setCodeChange(newCode) {
        this.setState({code: newCode});
    }


    login() {
        if (this.state.code == "") {
            // Some functionality
        }
    }

    render() {
        return (
            <div>
                <Child onCodeChange={this.setCodeChange} onLogin={this.login} />
            </div>
        );
    }
}

儿童班,

export default class Child extends Component {
    constructor(props) {
        super(props);
    }

    handleCodeChange(e) {
        this.props.onCodeChange(e.target.value);
    }

    login() {
        this.props.onLogin();
    }

    render() {
        return (
            <div>
                <input name="code" onChange={this.handleCodeChange.bind(this)}/>
            </div>
            <button id="login" onClick={this.login.bind(this)}>
        );
    }
}

Child.propTypes = {
    onCodeChange: React.PropTypes.func,
    onLogin: React.PropTypes.func
};

但是,这会导致以下错误,

this.state 未定义

它指的是,

if (this.state.code == "") {
    // Some functionality
}

知道是什么原因造成的吗?

4

2 回答 2

10

您可以使用箭头功能来绑定您的功能。您需要在子组件和父组件中绑定函数。

家长:

export default class Parent extends Component {
    constructor(props) {
        super(props);
        this.state = {
            code: ''
        };
    }

    setCodeChange = (newCode) => {
        this.setState({code: newCode});
    }


    login = () => {
        if (this.state.code == "") {
            // Some functionality
        }
    }

    render() {
        return (
            <div>
                <Child onCodeChange={this.setCodeChange} onLogin={this.login} />
            </div>
        );
    }
}

孩子

export default class Child extends Component {
    constructor(props) {
        super(props);
    }

    handleCodeChange = (e) => {
        this.props.onCodeChange(e.target.value);
    }

    login = () => {
        this.props.onLogin();
    }

    render() {
        return (
            <div>
                <input name="code" onChange={this.handleCodeChange}/>
            </div>
            <button id="login" onClick={this.login}>
        );
    }
}

Child.propTypes = {
    onCodeChange: React.PropTypes.func,
    onLogin: React.PropTypes.func
};

还有其他方法可以绑定功能,例如您正在使用的方法,但您也需要为父组件执行此操作 <Child onCodeChange={this.setCodeChange.bind(this)} onLogin={this.login.bind(this)} />

或者您可以在构造函数中指定绑定为

家长:

constructor(props) {
    super(props);
    this.state = {
        code: ''
    };
 this.setCodeChange = this.setCodeChange.bind(this);
 this.login = this.login.bind(this);
}

孩子

constructor(props) {
    super(props);
    this.handleCodeChange = this.handleCodeChange.bind(this);
    this.login = this.login.bind(this);
}
于 2016-09-15T05:31:29.907 回答
0

我同意@Shubham Kathri 提供的所有不同解决方案,但渲染中的直接绑定除外。

不建议你直接在 render 中绑定你的函数。建议您始终在构造函数中绑定它,因为如果您直接在渲染中进行绑定,那么每当您的组件渲染时,Webpack 都会在捆绑文件中创建一个新的函数/对象,因此 Webpack 捆绑文件的大小会增加。由于许多原因,您的组件会重新渲染,例如:执行 setState 但如果您将它放在构造函数中,它只会被调用一次。

不推荐以下实现

<Child onCodeChange={this.setCodeChange.bind(this)} onLogin={this.login.bind(this)} />

始终在构造函数中执行此操作,并在需要时使用 ref

constructor(props){
  super(props);
  this.login = this.login.bind(this);
  this.setCodeChange = this.setCodeChange.bind(this);
}

<Child onCodeChange={this.setCodeChange} onLogin={this.login} />

如果您使用的是 ES6,则不需要手动绑定,但如果您愿意,可以。如果您想避免与范围相关的问题和手动函数/对象绑定,您可以使用箭头函数。

抱歉,如果我在手机中回答任何错别字

于 2018-08-26T04:19:14.467 回答