Ich habe ein Problem mit Spleiß() - Methode in meiner React.js App.Spleiß() Methode funktioniert nicht
So, this is an example app. Löschen funktioniert jetzt nicht. Was ist hier falsch? Ein Teil des Codes:
class CardList extends React.Component {
static propTypes = {
students: React.PropTypes.array.isRequired
};
// ADD DELETE FUNCTION
deletePerson(person) {
this.props.students.splice(this.props.students.indexOf(person), 1)
this.setState()
}
render() {
let that = this
return <div id='list'>
{this.props.students.map((person) => {
return <Card
onClick={that.deletePerson.bind(null, person)}
name={person.name}>
</Card>
})}
</div>
}
}
class Card extends React.Component {
render() {
return <div className='card'>
<p>{this.props.name}</p>
{/* ADD DELETE BUTTON */}
<button onClick={this.props.onClick}>Delete</button>
</div>
}
}
http://codepen.io/azat-io/pen/Vaxyjv
Sie sollten nie versuchen, die Requisiten zu modifizieren. Verwenden Sie stattdessen den Status: https://facebook.github.io/react/docs/component-api.html (mit 'setState'). – nils