node.js - koa:生成器不要下一步

时间:2016-02-04 00:22:59

标签: javascript node.js koa

我有一个简单的对象,我传递一个参数,然后我想找到我的集合中的所有文档并加盖它。这是我的自定义对象:

var db = require('../lib/db');
function Widget(n,l,c,o,t,p) {

    this.name = n;
    this.label = l;
    this.class = c;
    this.order = o;
    this.template = t;
    this.params = p;

    if(this.params != null) {
        var a = getValue(this.params);
        a.next();
     }
}
function *getValue(p){
    var Object = require("./sections");

    console.log("1");
    try {
        var objects = yield Object.find({}).exec();
    }
    catch(err){ 
        throw err;
    }
    console.log("2");
    console.log("obj:" + objects);
}
module.exports = Widget;

这是sections.js

var db = require('../lib/db');
var schema = new db.Schema(
{
    title:          String,
    parent:         { type: db.Schema.ObjectId, ref: 'sections' },
    child:          [{ type: db.Schema.ObjectId, ref: 'sections' }],
    updated_on:     Date,
    created_on:     Date
});
module.exports = db.model( 'sections', schema );

我以这种方式创建对象:

var widget  = new Widget("text","Titiolo",0,0,"text.html","sections");
在我的控制台上我只看到“1”而不是“2”或“对象:”为什么?

1 个答案:

答案 0 :(得分:1)

这与koa无关。这就是发电机的工作原理。 .next()评估代码,直到下一个yield函数。因为您的生成器函数中有1 yield,所以您需要调用.next()两次才能完成对整个函数的评估,包括最后两个console.log() s

另外,你的try / catch块没有做任何事情。