简体   繁体   中英

React.js modify state of parent from button

I'm just digging into Reactjs. In my crude example I would like the delete button to remove an item from the items array. How would I do this from handleClick in the Btn component? Or what is the best way to handle this?

var data= {
"items": [
    {
        "title": "item1"
    },
    {
        "title": "item2"
    },
    {
        "title": "item3"
    }
]
};



var Btn = React.createClass({

handleClick: function(e) {
console.log('clicked delete'+ this.props.id);
  //how does delete button modify this.state.items in TodoApp?

},
render: function() {
return <button onClick={this.handleClick}>Delete</button>;
}
});

var TodoList = React.createClass({

render: function() {
var createItem = function(itemText, index) {
  return <li key={index + itemText}>{itemText} &nbsp;<Btn id={index} /></li>;
};
return <div><ul>{this.props.items.map(createItem)}</ul></div>;
}
});



var TodoApp = React.createClass({

getInitialState: function() {
  console.log("getInitialState");

return data;
  },



  onChange: function(e) {
    this.setState({text: e.target.value});
  },
  handleSubmit: function(e) {
    e.preventDefault();
    var nextItems = this.state.items.concat([this.state.text]);
    var nextText = '';
    this.setState({items: nextItems, text: nextText});
  },
  render: function() {
    return (
      <div>
        <h3>TODO</h3>
        <TodoList items={this.state.items} />
        <form onSubmit={this.handleSubmit}>
          <input onChange={this.onChange} value={this.state.text} />
          <button>{'Add #' + (this.state.items.length + 1)}</button>
        </form>
      </div>
    );
  }
});



React.render(<TodoApp />, document.getElementById('container'));

JSFiddle example

By sending a callback to your Btn component. Explained further in this answer .

The Flux way would be to update your data store and trigger a render of your app, f.ex:

var deleter = function(id) {
  data.items.splice(id,1)
  React.render(<TodoApp />,
    document.getElementById('container'));
}

[...]

handleClick: function(e) {
    deleter(this.props.id)
}

Demo: http://jsfiddle.net/s01f1a4a/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM