您可以使用 选择效果
import {select, ...} from 'redux-saga/effects'function* deserialize( action ) { const state = yield select(); .... yield put({ type: 'DESERIALIZE_COMPLETE' });}您也可以将其与选择器一起使用
const getItems = state => state.items;function* deserialize( action ) { const items = yield select(getItems); .... yield put({ type: 'DESERIALIZE_COMPLETE' });}


