node.js – Das Co-Modul von nodejs führt yield selbst aus
伊谢尔伦
伊谢尔伦 2017-05-16 13:35:43
0
4
684

Mein Code ist so

const co = require('co');

function are(){

}

function* abc(){
    var a = yield are()
    console.log(1)
    var b = yield are()
    console.log(2)
    var c = yield are()
    console.log(3)
}

co(abc)

Mein erwartetes Ausführungsergebnis: Die Konsole sollte 1, 2, 3 ausgeben

Bei der Ausführung meldete das Programm jedoch einen Fehler

Ich sollte sagen, es ist meinsyield后面应该跟function但是上面的demo中我的yield后面跟的已经是functionWarum gibt es keine erwartete Ausgabe?

Zweite Schreibweise:

const co = require('co');

function are1(){

}
function are2(){

}
function are3(){

}

function* abc(){
    var a = yield are1
    console.log(1)
    var b = yield are2
    console.log(2)
    var c = yield are3
    console.log(3)
}

co(abc)
    .then(data =>{
        console.log(data)
    })
    .catch(err =>{
        console.log(err)
    })

coAkzeptiert bereits eine Generatorfunktion. Die obige Schreibmethode kann 1,2,3 nicht auf der Konsole ausgeben

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

Antworte allen(4)
漂亮男人

你的yield后面跟的不是are这个函数,而是are执行后的返回值。
其实它等于yield undefined,这才是报错的原因。

某草草
function* are(){

}
伊谢尔伦

不支持普通函数

PHPzhong

看看co库的源码就好,报错是co库报出来的,原因是因为楼上说的返回了undefined,具体报错代码如下:

if (value && isPromise(value)) 
    return value.then(onFulfilled, onRejected);
return onRejected(new TypeError('You may only yield a function, promise, generator, array, or object, '
+ 'but the following object was passed: "' + String(ret.value) + '"'));

isPromise检测是否为Promiseco库先尝试将yield后转换为Promise,具体参见toPromise函数:

function toPromise(obj) {
  if (!obj) return obj;
  if (isPromise(obj)) return obj;
  if (isGeneratorFunction(obj) || isGenerator(obj)) return co.call(this, obj);
  if ('function' == typeof obj) return thunkToPromise.call(this, obj);
  if (Array.isArray(obj)) return arrayToPromise.call(this, obj);
  if (isObject(obj)) return objectToPromise.call(this, obj);
  return obj;
}

传入的是undefined,所以最终toPromise返回了undefined,检测不是Promise,所以就抛出了错误。

至于为什么没有输出1,2,3的原因,是因为yield后面的关系,yield后面是要接受函数作为参数,并且要执行这个函数的,所以yield后面一般跟着的是异步操作,这个函数就是回调函数,但是的那个函数,所以这么改下就可以了:

function are1(fn) {
    fn();
}
function are2(fn) {
    fn();
}
function are3(fn) {
    fn();
}
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage