1 回答
TA贡献1799条经验 获得超8个赞
看起来您的组件在每个渲染周期都订阅了商店,并且由于订阅回调更新了组件状态,因此触发了另一个渲染周期。
您可能只希望组件订阅您的商店一次。
您可以使用效果订阅一次以在更新时记录状态。使用效果清理功能取消订阅。
const App = () => {
const [val, setVal] = React.useState(0);
handleClick = () => {
store.dispatch({type: 'INCREMENT'})
}
useEffect(() => {
const unsubscribe = store.subscribe(() => {
const state = store.getState();
console.log("Listener is called", state.count);
setVal(state.count);
});
/* unsubscribe() */;
return unsubscribe; // <-- return cleanup function
}, []); // <-- empty dependency array to run once on mount
return (
<div>
<span>{val}</span>
<button onClick={handleClick}>Click</button>
</div>
);
}
添加回答
举报