Hamza
Hamza

Reputation: 2413

Listener for state changes in reactjs

I have a component with a couple of input fields that updates the state of the component using the valueLink={this.linkState('foo')} facility provided by React.addons.LinkedStateMixin.

Prior to this I was using the onChange handler to communicate the changes back to the server using a websocket connection, so I was wondering if I could replicate this behaviour somewhat and post the changes in the state back using a "state change listener" of some sorts?

Upvotes: 6

Views: 25825

Answers (1)

Hamza
Hamza

Reputation: 2413

Looks like the method I am looking for is componentDidUpdate()

Upvotes: 11

Related Questions