13
Ben an example of the React-dnd project okuyorum:
moveCard(dragIndex, hoverIndex) {
const { cards } = this.state;
const dragCard = cards[dragIndex];
this.setState(update(this.state, {
cards: {
$splice: [
[dragIndex, 1],
[hoverIndex, 0, dragCard]
]
}
}));}
mı aynı bir on this page açıkladı bu $ ekleme?
Bu kod parçası ne yapar? $splice
işlevi benim için çok karışık.