如何调用每60秒后终极版,传奇动作不断

问题描述 投票:0回答:1

我的工作的情况下,我需要每60秒后,继续调用单个API

我关心的是我应该如何使用终极版 - 佐贺调用相同的API请求

我使用的是正常的终极版,传奇动作,例如,让员工的名单,取每60秒的员工名单

使用终极版,传奇,反应,终极版和反应

reactjs redux react-redux redux-saga
1个回答
0
投票
import { delay } from 'redux-saga';
import { call, put, takeLatest, all } from 'redux-saga/effects';


export function* fetchContinuously(action) {
  yield call(api);

  yield call(delay, 60000);

  yield put({ type: "FETCH_CONTINUOUSLY" })
}

function* actionWatcher() {
  yield takeLatest('FETCH_CONTINUOUSLY', fetchContinuously)
}


export default function* rootSaga() {
  yield all([
    actionWatcher(),
  ]);
}
© www.soinside.com 2019 - 2024. All rights reserved.