【发布时间】:2020-10-04 11:00:27
【问题描述】:
我想等待 yieldall 中的所有 put 操作完成,然后再进行下一个 yield。我认为这就是 yieldall 应该达到的目标。我是 Redux Saga 的新手,因此我可能遗漏了一些细节或逻辑。
这是我的 workerAnalytics(第一个使用 dispatch 'ANALYTICS' 调用的工人)
export function* workerAnalytics(action) {
console.log('here')
let group = action.group
yield put({ type: 'SHOW_LOADER', loading: action.loading })
yield all([
put({ type: 'BASIC_ANALYTICS', loading: 'client', group: group }),
put({ type: 'BASIC_ANALYTICS', loading: 'KPI', group: group }),
put({ type: 'BASIC_ANALYTICS', loading: 'country', group: group }),
put({ type: 'BASIC_ANALYTICS', loading: 'estimated_revenue' }),
])
console.log('there')
yield put({ type: 'HIDE_LOADER', loading: action.loading })
}
我的 workerBasicAnalytics(在从调度类型“BASIC_ANALYTICS”调用 watcherBasicAnalytics 之后调用)
export function* workerBasicAnalytics(action) {
try {
let data;
if (action.loading === 'KPI') { yield put({ type: 'SHOW_LOADER', loading: action.loading }) }
data = action.loading === 'client' ? yield call(() => axiosInstance.get(`/customer-conversion/?group=${action.group}`)) :
action.loading === 'KPI' ? yield call(() => axiosInstance.get(`/kpi/?group=${action.group}`)) :
action.loading === 'country' ? yield call(() => axiosInstance.get(`/customer-country/?group=${action.group}`)) :
action.loading === 'estimated_revenue' ? yield call(() => axiosInstance.get('/estimated-revenue/')) : null
yield put({ type: "STORE_DATA", payload: data.data, fetch: action.loading })
if (action.loading === 'KPI') { yield put({ type: 'HIDE_LOADER', loading: action.loading }) }
console.log(action.loading)
} catch (error) {
console.log(error)
}
}
如您所见,我的工作程序函数中都有 console.log 来跟踪哪个首先执行。问题是 'there' 是在 'here' 之后记录的,而它应该是在记录 'there' 之前应该记录的单个 workerBasicAnalytics console.log(action.loading),如 console.log( 'there') 在 yieldall 之后。
感谢所有帮助,谢谢!
【问题讨论】:
标签: redux react-redux redux-saga