amazingzcj
Results
1
issues of
amazingzcj
``` export function* loginFetch(action) { try { const info = yield call(loginUserFetch, action.params); console.log(info) if(!info) return yield put({type: actionTypes.LOG_FETCH_FAIL, loading:false }); if (Object.keys(info).length > 0) { const {id, name, token}...