thunk 函数

Posted Hello World

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thunk 函数相关的知识,希望对你有一定的参考价值。

 

 

function* f() {
        console.log(1);
        for (var i = 0; true; i++) {
            console.log(‘come in‘);
            var reset = yield i;
            console.log(reset);
            if (reset) { i = -1; }
        }
    }

    // 这个时候并不会执行 1
    var g = f();
    /*
      输出1 和 come in,
      只会执行 yield 后面的语句, 并且暂停,
      但是这个时候 reset 并没有赋值,
      最终返回{value: 0, done: false}
    */
    g.next();
    /*
      reset 赋值 333;
      输出 333;
      输出 come in;
      返回{value: 0, done: false}
    */
    g.next(333);

 

以上是关于thunk 函数的主要内容,如果未能解决你的问题,请参考以下文章

使用 Redux-thunk 调用操作不起作用

thunk函数

thunk函数

Thunk函数的使用

什么是蹦床功能?

getState函数在thunk中未定义