Reputation: 2413
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