admin管理员组文章数量:1344316
I have the following code inside a react functional ponent. When I click the button and run the handler, an error occurs:
Invalid hook call. Hooks can only be called inside of the body of a function ponent.
const handleClick = () => {
const [count, setCount] = useState(x); // this is wrong
};
I tried to search for the fix, someone suggests:
const [count, setCount] = useState(0);
const handleClick = () => {
setCount(x); // setCount is ok, but I cannot set other dynamic states
};
However, my count
state is dynamic and I cannot initialize all from start. When I use class ponents, it was easy.
// old syntax from class ponents
state = {
count: 0
};
const handleClick = () => {
this.setState({
other_count: x
})
};
How to achieve the same effect for functional ponents?
I have the following code inside a react functional ponent. When I click the button and run the handler, an error occurs:
Invalid hook call. Hooks can only be called inside of the body of a function ponent.
const handleClick = () => {
const [count, setCount] = useState(x); // this is wrong
};
I tried to search for the fix, someone suggests:
const [count, setCount] = useState(0);
const handleClick = () => {
setCount(x); // setCount is ok, but I cannot set other dynamic states
};
However, my count
state is dynamic and I cannot initialize all from start. When I use class ponents, it was easy.
// old syntax from class ponents
state = {
count: 0
};
const handleClick = () => {
this.setState({
other_count: x
})
};
How to achieve the same effect for functional ponents?
Share Improve this question edited Jul 11, 2024 at 2:02 Dale K 27.5k15 gold badges58 silver badges83 bronze badges asked Oct 21, 2019 at 5:29 54136680605413668060 3362 silver badges16 bronze badges 4- Can you post your package.json? – Oleg Levin Commented Oct 21, 2019 at 5:33
- can you post your whole ponent – cjbt Commented Oct 21, 2019 at 5:34
- "react": "^16.9.0", "react-dom": "^16.9.0", "react-redux": "^7.1.1", "react-router-dom": "^5.0.1", "react-scripts": "2.1.8" – 5413668060 Commented Oct 21, 2019 at 5:35
-
Is
other_count
a puted key? – Joseph D. Commented Oct 21, 2019 at 5:37
2 Answers
Reset to default 4if you want to use state
dynamically, use object
as state
.
Keep in mind with the immutability.
const [state, setState] = useState({ count: 0 });
const handleClick = () => {
setState({...state, other_count: x });
}
You can use multiple states or an object in a single state.
First way:
const [count, setCount] = useState(0);
const [otherCount, setOtherCount] = useState(0);
const handleClick = () => {
// count is already available to you.. so update the other state
setOtherCount(x);
};
Second way:
const [pState, setCompState] = useState({ count: 0, other_count: 0 });
const handleClick = () => {
setCompState(prevState => { ...prevState, other_count: x });
};
DEMO for the second way.
本文标签: javascriptReact How to call react hooks inside the event handlerStack Overflow
版权声明:本文标题:javascript - React: How to call react hooks inside the event handler? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795822a2540410.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论