我正在使用react和redux创建计数器应用程序。
在counterSlice.js
文件中,我包括了下面这行:export const selectCount = (state) => state.count;
个
在Counter.js
文件中,我包含了以下行:import { changeValueBy, selectCount } from "./counterSlice";
const count = useSelector(selectCount);
但是count
的值仍然是undefined
。我的完整代码是here。请告诉我我做错了什么。
1条答案
按热度按时间pgx2nnw81#
您错过了创建一个商店并将应用与其
Provider
Package 在一起的步骤,如下所示:顺便说一句,我修正了你的代码sanbox here