如題溅蛉,在 React 項(xiàng)目中使用 redux-saga 中間件時辖佣,發(fā)現(xiàn) takeEvery 在 redux-saga module下,而不在 redux-saga/effects module 下悦施。正確引入后牧氮,項(xiàng)目運(yùn)行起來發(fā)現(xiàn)報錯,錯誤信息為:Attempted import error: 'takeEvery' is not exported from 'redux-saga'.
這是因?yàn)樵陧?xiàng)目中錯誤引入了 react-saga 引起的寞秃,請檢查 package.json中的 dependencies 下是否安裝了 react-saga斟叼,如果安裝了,請將其移除春寿,方法如下:
yarn remove react-saga
or
npm uninstall react-saga
然后重新運(yùn)行項(xiàng)目即可朗涩。
如果上述方法依然不奏效,請刪除 redux-soga 依賴后重新安裝堂淡,命令如下
yarn remove redux-saga;
yarn add redux-soga;
如果幫到了您,請留下您的贊??扒腕,非常感謝??绢淀。