admin管理员组

文章数量:1344233

I am trying to convert my React classes to ES6, but I am having some difficulty within this process.. I would like to have my bindings in the constructor, not in the render view.

Now, if I have a root module with a setState which needs a parameter, e.g.:

constructor() {
    super();

    this.state = {
        mood: ""
    };

    this.updateMood(value) = this.updateMood.bind(this,value);
}

updateMood(value) {
    this.setState({mood: value});
}

Then I pass this function to a ponent:

<customElement updateMood={this.updateMood}></customElement>

Then within the customElement module, I have something like this:

constructor() {
    super();
}

update(e) {
    this.props.updateMood(e.target.value);
}

and in the render:

<input onChange={this.update} />

Is this the correct way? Since I can't get it to work ;-(

I am trying to convert my React classes to ES6, but I am having some difficulty within this process.. I would like to have my bindings in the constructor, not in the render view.

Now, if I have a root module with a setState which needs a parameter, e.g.:

constructor() {
    super();

    this.state = {
        mood: ""
    };

    this.updateMood(value) = this.updateMood.bind(this,value);
}

updateMood(value) {
    this.setState({mood: value});
}

Then I pass this function to a ponent:

<customElement updateMood={this.updateMood}></customElement>

Then within the customElement module, I have something like this:

constructor() {
    super();
}

update(e) {
    this.props.updateMood(e.target.value);
}

and in the render:

<input onChange={this.update} />

Is this the correct way? Since I can't get it to work ;-(

Share Improve this question edited May 25, 2016 at 5:33 Oleksandr T. 77.5k17 gold badges176 silver badges145 bronze badges asked May 24, 2016 at 11:27 user3611459user3611459 3,3916 gold badges18 silver badges20 bronze badges 2
  • Just remove this.updateMood(value) = this.updateMood.bind(this,value); and change <customElement updateMood={this.updateMood.bind(this)}></customElement> Notice bind this while providing in props. – Vishwanath Commented May 24, 2016 at 12:09
  • "Is this the correct way?" If it doesn't work then probably not :P All you need is this.updateMood = this.updateMood.bind(this);. You should read the documentation about .bind and about functions in general to get a better understanding about how they work. This has nothing to do with React or ES6 btw. – Felix Kling Commented May 24, 2016 at 16:11
Add a ment  | 

2 Answers 2

Reset to default 7

You can't use this this.updateMood(value) = this.updateMood.bind(this,value); construction, because it is syntax error.

You can solve your problem like this

class CustomElement extends React.Component {
  constructor() {
    super();
    this.update = this.update.bind(this);
  }

  update(e) {
    this.props.updateMood(e.target.value);
  }

  render() {
    return <input onChange={this.update} />
  }
}

class Parent extends React.Component {
  constructor() {
    super();

    this.state = {
        mood: ""
    };

    this.updateMood = this.updateMood.bind(this);
  }

  updateMood(value) {
    this.setState({ mood: value });
  }

  render() {
    return <div>
      <CustomElement updateMood={this.updateMood}></CustomElement>
      <h1>{ this.state.mood }</h1>
    </div>
  }
}

Example

Or, depending on your babel settings, or when using typescript, the following achieves the same but is a lot more convenient to write / maintain:

class Parent extends React.Component {
  constructor() {
    super();

    this.state = {
        mood: ""
    };
  }

  updateMood = (value) => {
    this.setState({ mood: value });
  }
}

本文标签: javascriptReact bind in constructorhow to pass parameters to propsStack Overflow