美文网首页
redux-saga 使用

redux-saga 使用

作者: 日不落000 | 来源:发表于2018-07-31 10:44 被阅读47次

    中文文档:

    中文文档 https://redux-saga-in-chinese.js.org/docs/api/

    在任意位置运行saga Generator 函数,dispatch action

    使用saga中间件

    middleware.run(saga, ...args)
    

    动态地运行 saga。只能 用于在 applyMiddleware 阶段 之后 执行 Saga。

    saga: Function: 一个 Generator 函数
    args: Array<any>: 提供给 saga 的参数 
    
    准备:
    
    import createSagaMiddleware from 'redux-saga';
    
    const sagaMiddleware = createSagaMiddleware();
    
      // Extensions
      store.runSaga = sagaMiddleware.run;
    
    global.store = store;
    
    
    使用:
    
        function* func1(action) {
          console.log('func1');
          yield put(api_login_success({type:1}));
          console.log('func1--2');
        }
        store.runSaga(func1);
    
    

    相关文章

      网友评论

          本文标题:redux-saga 使用

          本文链接:https://www.haomeiwen.com/subject/adpcvftx.html