Реагировать на родную сагу, доходность колла не работает - PullRequest
2 голосов
/ 17 января 2020

Я пытаюсь написать API с помощью Redux-сага. У меня есть свои servicesSaga. js вот так

import { FETCH_USER } from '../actions/actionTypes'
import { delay } from 'redux-saga'
import { call, put, takeEvery, takeLatest } from 'redux-saga/effects'
import { _getUserInformation } from './api'

const getUserInformation = function*(action) {
    console.log("FONKSİYONA geldi")
    console.log(action)
    try {
        console.log("try catche geldi")
        const result = yield call(_getUserInformation, action)
        console.log("result döndü")
        if (result === true) {
            yield put({ type: FETCH_USER })
        }
    } catch (error) {

    }
}

export function* watchGetUserInformation() {
    yield takeLatest(FETCH_USER, getUserInformation)
    console.log("WatchUsere geldi")
}

Я пытаюсь вызвать мой метод _getUserInformation из ./api, но метод yield yield не работает. Это мой API. js.

const url = 'http://myreduxproject.herokuapp.com/kayitGetir'


function* _getUserInformation(user) {
    console.log("Apiye geldi" + user)
    const response = yield fetch(url, {
        method: 'POST',
        headers: {
            Accept: 'application/json',
            'Content-Type': 'application/json',
        },
        body: JSON.stringify({
            email: user.email,
        })
    })

    console.log(response.data[0])
    return yield (response.status === 201)
}

export const api ={
    _getUserInformation
}

Спасибо за вашу помощь.

1 Ответ

0 голосов
/ 17 января 2020

Функция генератора должна быть определена как функция * yourFunction () {} попробуйте это изменить.

servicesSaga. js

function* getUserInformation(action) {
    try {
        const result = yield _getUserInformation(action) //pass user here
        if (result) {
            yield put({ type: FETCH_USER })
        }
    } catch (error) {

    }
}

export function* watchGetUserInformation() {
    yield takeLatest(FETCH_USER, getUserInformation)
}

api. js

    const url = 'http://myreduxproject.herokuapp.com/kayitGetir'

    function* _getUserInformation(user) {

        const response = yield fetch(url, {
            method: 'POST',
            headers: {
                Accept: 'application/json',
                'Content-Type': 'application/json',
            },
            body: JSON.stringify({
                email: user.email,
            })
        })
        console.log('response',response);
        return response;
    }

export {
 _getUserInformation
}
...