Reactjs and this is undefined

461 Views Asked by At

I m actually trying to develop a simple application using stores and actions and react components using fluxible and I m facing a problem.

In fact, in my component method add(), "this" is undefined...

I dont know what is the problem...

Here's my component:

import React from 'react';

class Client extends React.Component {

    constructor (props) {
      super(props);
    }

    add(e){
      this.context.dispatch('ADD_ITEM', {name:'Marvin'});
    }

    render() {
        return (
            <div>
                <h2>Client</h2>
                <p>List of all the clients</p>
                <button onClick={this.add}>Click Me</button>
                <ul>
                </ul>
            </div>
        );
    }


}

Client.contextTypes = {
    dispatch: React.PropTypes.func.isRequired
};

export default Client;
2

There are 2 best solutions below

1
On BEST ANSWER

Try this for your button:

<button onClick={this.add.bind(this)}>Click Me</button>
2
On

From the docs:

Methods follow the same semantics as regular ES6 classes, meaning that they don't automatically bind this to the instance. You'll have to explicitly use .bind(this) or arrow functions =>.

So either you bind the function (which I find tedious):

<button onClick={this.add.bind(this)}>Click Me</button>

Or you can enable and leverage Babel React ES6+ arrow functions feature:

add = (e) => {
    this.context.dispatch('ADD_ITEM', {name:'Marvin'});
}