admin管理员组文章数量:1346324
I'm really struggling to reset the state back to it's orginal from with a method in React. My current reset method only resets the value. I have tried adding in const equal to the original state and then setting state equal to that, but I have had no luck.
Any advice?
class App extends Component {
state = {
counters: [
{ id: 1, value: 4 },
{ id: 2, value: 0 },
{ id: 3, value: 0 },
{ id: 4, value: 0 }
]
};
handleReset = () => {
const counters = this.state.counters.map(c => {
c.value = 0;
return c;
});
this.setState({ counters: counters });
};
}
I'm really struggling to reset the state back to it's orginal from with a method in React. My current reset method only resets the value. I have tried adding in const equal to the original state and then setting state equal to that, but I have had no luck.
Any advice?
class App extends Component {
state = {
counters: [
{ id: 1, value: 4 },
{ id: 2, value: 0 },
{ id: 3, value: 0 },
{ id: 4, value: 0 }
]
};
handleReset = () => {
const counters = this.state.counters.map(c => {
c.value = 0;
return c;
});
this.setState({ counters: counters });
};
}
Share
Improve this question
edited Dec 1, 2018 at 22:21
Yangshun Tay
53.3k33 gold badges123 silver badges150 bronze badges
asked Aug 13, 2018 at 21:19
Carter SteinhoffCarter Steinhoff
411 gold badge1 silver badge10 bronze badges
1
- It's a not valid JS code. Please take a look at brackets. – Serge K Commented Aug 13, 2018 at 21:26
3 Answers
Reset to default 5You could keep the initial state in a separate array, and create a copy of the array as initial state, and also create a copy of the array when using the handleReset
.
Example
const counters = [
{ id: 1, value: 4 },
{ id: 2, value: 0 },
{ id: 3, value: 0 },
{ id: 4, value: 0 }
];
class App extends React.Component {
state = {
counters: [...counters]
};
handleReset = () => {
this.setState({ counters: [...counters] });
};
handleClick = index => {
this.setState(prevState => {
const counters = [...prevState.counters];
counters[index] = {
...counters[index],
value: counters[index].value + 1
};
return { counters };
});
};
render() {
return (
<div>
{this.state.counters.map((counter, index) => (
<button id={counter.id} onClick={() => this.handleClick(index)}>
{counter.value}
</button>
))}
<div>
<button onClick={this.handleReset}>Reset</button>
</div>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="root"></div>
Not known to many, changing the key
prop is one way to reset a ponent's state. When the key
of an element changes, React will unmount it and reinstantiate the ponent.
If your ponent has a parent ponent and could get the parent ponent to change the key
on your ponent. In the example below, the parent ponent has a key
state that is a number. When you click the reset button, the parent ponent increases the key
and the Counter
ponent is remounted, thereby clearing all state. Any different value of key
will cause the ponent to remount.
class Counter extends React.Component {
state = {
counters: [
{ id: 1, value: 4 },
{ id: 2, value: 0 },
{ id: 3, value: 0 },
{ id: 4, value: 0 }
],
};
handleClick = index => {
this.setState(prevState => {
const counters = [...prevState.counters];
counters[index] = {
...counters[index],
value: counters[index].value + 1
};
return { counters };
});
};
render() {
return (
<div>
{this.state.counters.map((counter, index) => (
<button id={counter.id} onClick={() => this.handleClick(index)}>
{counter.value}
</button>
))}
<div>
<button onClick={this.props.handleReset}>Reset</button>
</div>
</div>
);
}
}
class App extends React.Component {
state = {
key: 0,
};
handleReset = () => {
this.setState(prevState => ({
key: prevState.key + 1
}));
};
render() {
return (
<div>
<Counter
key={this.state.key}
handleReset={this.handleReset}
/>
</div>
);
}
}
ReactDOM.render(<App />, document.getElementById("root"));
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="root"></div>
With the assumption that your state is valid JSON, this seems a simple solution:
const initialState = {...};
class ... {
this.state = JSON.parse(JSON.stringify(initialState));
reset = () => {
this.setState(JSON.parse(JSON.stringify(initialState)));
}
}
Deep cloning, no libs needed, native code.
本文标签: javascriptReset component state in ReactStack Overflow
版权声明:本文标题:javascript - Reset component state in React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829161a2546202.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论