简体   繁体   English

Redux-Saga通话无法正常运作

[英]Redux-Saga call not working

I am trying call a function using redux-saga's call but the function is not being called: 我正在尝试使用redux-saga的call函数,但未call该函数:

below is my saga.js: 以下是我的saga.js:

import { takeLatest, put, call } from 'redux-saga/effects';
import {NavigationActions} from 'react-navigation';
import NavigatorService from '../services/navigator';
import { SIGN_UP, AUTHENTICATION_FAILED, SIGN_UP_SUCCESS, LOGIN, LOGIN_SUCCESS} from '../actions/index';
import firebase from 'firebase';


function* signUp(action){
    try{
        const auth = firebase.auth();
        const result = yield call([
                      auth, auth.createUserWithEmailAndPassword],
                      action.user.email,
                      action.user.password
                      );
        console.log("signup success") // this is being logged
        call([
            NavigatorService, NavigatorService.navigate],
            'Tabs'
       ); // not being called
      yield put({type: SIGN_UP_SUCCESS, user: action.user});
      console.log("done") // not being logged


    }
    catch(error){
        const error_message = {code: error.code, message: error.message};
        console.log(error_message);
        yield put({type: AUTHENTICATION_FAILED, error: error_message});
    }
}


function* rootSaga(){
  yield takeLatest(SIGN_UP, signUp);
}

export  default rootSaga;

I have tried calling NavigatorService.navigate from other components and it works fine. 我尝试从其他组件调用NavigatorService.navigate ,并且工作正常。 I am even logging in NavigatorService in this case it's not being logged. 在这种情况下,我什至没有登录NavigatorService Can anyone please tell what I am doing wrong? 谁能告诉我我做错了吗?

You are missing a yield . 您错过了一个yield It should be: 它应该是:

yield call([ NavigatorService, NavigatorService.navigate ], 'Tabs');

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM