我有两个事件:
import { call, takeLatest, put } from "redux-saga/effects";
function* handleUserSignup(action) {
try {
yield call(userSignupApi, action.userDetails);
yield put(userSignupSuccess()); //dispatching success action
} catch (error) {
yield put(userSignupFail(error)); //dispatching error action
}
}
function* watchUserSignup() {
yield takeLatest(NEW_USER.SIGNUP, handleUserSignup);
}
是否可以通过查询来查找事件之间的差异? 我不知道字段的数量,我想比较所有事件字段并检查是否有其他不同。 我该怎么办?
谢谢。