【发布时间】:2020-10-23 11:13:13
【问题描述】:
我一直在尝试将 redux sagas 和 redux 工具包引入我的项目。我目前遇到的问题是观察者传奇没有捕捉到takeEvery 效果中的调度动作并运行处理程序。我看不出代码有什么问题。谁能帮忙!!!
import { configureStore, getDefaultMiddleware } from '@reduxjs/toolkit'
import createSagaMiddleware from 'redux-saga'
import logger from 'redux-logger';
import createReducer from './rootReducer';
import sagas from './rootSaga';
const configureAdminStore = (initialState = {}) => {
const sagaMiddleware = createSagaMiddleware();
// sagaMiddleware: Makes redux-sagas work
const middlewares = [sagaMiddleware, logger];
const store = configureStore({
reducer: createReducer(),
middleware: [...getDefaultMiddleware({thunk: false}), ...middlewares],
preloadedState: initialState,
devTools: process.env.NODE_ENV !== 'production',
});
sagaMiddleware.run(sagas);
return store;
}
export default configureAdminStore;
import {put, take, takeEvery, call} from 'redux-saga/effects'
import {getAll} from './environmentSlice'
import {confApi} from '../../service/conf-api'
import { getData } from '../../lib/conf-api-response';
function* getAllEnvironments() {
const response = yield call(confApi.admin.getEnvironments());
const {environments} = yield call(getData(response));
yield put(getAll(environments));
}
// eslint-disable-next-line import/prefer-default-export
export function* watchGetAllEnvironments() {
yield takeEvery(getAll().type, getAllEnvironments);
}
import { createSlice } from '@reduxjs/toolkit'
const environmentSlice = createSlice({
name: 'environments',
initialState: [],
reducers: {
getAll: (state, action) => {
state = action.payload
},
},
})
export const {getAll} = environmentSlice.actions
export const { getAllSuccess } = environmentSlice.actions;
export default environmentSlice.reducer
export const environmentSelector = (state) => state.environments
import {all} from 'redux-saga/effects'
import {watchGetAllEnvironments} from './environments/environmentSaga'
export default function* rootSaga() {
yield all([
watchGetAllEnvironments(),
])
}
【问题讨论】: