13
私はan example of the React-dnd projectを読んでいます:
moveCard(dragIndex, hoverIndex) {
const { cards } = this.state;
const dragCard = cards[dragIndex];
this.setState(update(this.state, {
cards: {
$splice: [
[dragIndex, 1],
[hoverIndex, 0, dragCard]
]
}
}));}
をされているのと同じ1はon this pageを説明し、この$スプライスは?
誰でもこのコードチャンクは何を説明できますか? $splice
の機能は私にとって非常に混乱しています。