【问题标题】:React Redux Saga Effect doesn't executeReact Redux Saga Effect 不执行
【发布时间】:2016-08-12 10:38:41
【问题描述】:

我将ReactReduxSaga 一起使用。 当我尝试使用 this.props.dispatch({type: "WORK_GET_DATA_BEGIN"}); 在我的组件中执行 Saga Effect 时,没有任何反应,它不会被执行。

如果它运行,它应该将“WorkGetDataBegin called”记录到控制台,但什么也没有。

index.js //react的入口点

import 'babel-polyfill';
import React from 'react';
import ReactDOM from "react-dom";
import {Provider} from "react-redux";

import ConfigureStore from "./ConfigureStore";

import App from "./App";

//Create the redux store with saga middleware
const store = ConfigureStore();

$(window).load(function(){StartReact()});

function StartReact()
{
    ReactDOM.render(
        <Provider store={store}>
            <App/>
        </Provider>,
        document.getElementById('container')
    );
}

ConfigureStore.js //初始化存储

import {createStore, applyMiddleware} from "redux";
import createSagaMiddleware from 'redux-saga'
import allReducers from "./AllReducers";

export default function ConfigureStore()
{
    const sagaMiddleware = createSagaMiddleware();
    const store = createStore(allReducers, applyMiddleware(sagaMiddleware));
    return store;
}

App.js //组件

import React from "react";
import {bindActionCreators} from "redux";
import {connect} from "react-redux";

class App extends React.Component
{
    constructor(props)
    {
        super(props);
    }

    componentDidMount()
    {
        console.log("componentDidMount");
        this.props.dispatch({type: "WORK_GET_DATA_BEGIN"});
    }

    render()
    {
        return(
            <div></div>
        );
    }
}

function mapStateToProps(state)
{
    return {
    }
}

function mapDispatchToProps(dispatch)
{
    return bindActionCreators({}, dispatch);
}

export default connect(mapStateToProps)(App);

WorkGetData.js //传奇效果

import { takeEvery, delay } from 'redux-saga';
import { put, call } from 'redux-saga/effects';

//The name of the actionType
const actionType = "WORK_GET_DATA";
// ******** Calls ********
const actionTypeBegin = actionType +"_BEGIN";
const actionTypeAbort = actionType +"_ABORT";

// ******** Responses ********
const actionTypeSuccess = actionType +"_SUCCESS";
const actionTypePending = actionType +"_PENDING";
const actionTypeFailure = actionType +"_FAILURE";

//Watcher saga for BEGIN
export function* WatchWorkGetDataBegin()
{
    yield* takeEvery(actionTypeBegin, WorkGetDataBegin);
}

//Saga for BEGIN
export function* WorkGetDataBegin()
{
    yield call(console.log,"WorkGetDataBegin called");
    //Notify the UI that the action started
    yield put({ type: actionTypePending });
    yield call(delay, 5000);
    const payload = yield call(WorkGetDataAsync);
    yield put({ type: actionTypeSuccess, payload: payload });
}

//Async function for fetching data
function* WorkGetDataAsync()
{
    console.warn("Implement AJAX Request");
    return(
        {
            companyName: "User's Company",
            salary: 500.7
        }
    );
}

【问题讨论】:

  • 试试这个,在中间件中,在导出商店之前运行 middleware.run(saga.WatchWorkGetDataBegin);其中 saga 是对您的 saga 文件的引用。

标签: javascript reactjs redux redux-saga


【解决方案1】:

您定义了您的 WatchWorkGetDataBegin 传奇,但从未通过 instructed the middleware 执行它。尝试类似:

import 'babel-polyfill';
import React from 'react';
import ReactDOM from "react-dom";
import {Provider} from "react-redux";

import ConfigureStore from "./ConfigureStore";
import WatchWorkGetDataBegin from "./WorkGetData";

import App from "./App";

//Create the redux store with saga middleware
const { store, middleware } = ConfigureStore();
middleware.run(WatchWorkGetDataBegin);

$(window).load(function(){StartReact()});

function StartReact()
{
    ReactDOM.render(
        <Provider store={store}>
            <App/>
        </Provider>,
        document.getElementById('container')
    );
}

请注意,您还必须修改 ConfigureStore 以返回 store 和 saga 中间件。

【讨论】:

  • 我会在星期一试试这个
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-02-21
  • 2019-06-05
  • 2019-03-18
  • 2018-09-03
  • 1970-01-01
  • 2020-10-30
相关资源
最近更新 更多