您的位置:首页技术文章
文章详情页

node.js - 函数getByName()中如何使得co执行完后才return

【字号: 日期:2024-07-16 14:14:46浏览:59作者:猪猪

问题描述

express中判断用户登录(使用了sequelize和co)但是是return res之后才看到console.log中的信息。如何使得执行完co中的函数才return?node.js - 函数getByName()中如何使得co执行完后才return

问题解答

回答1:

一般是返回个Promise,使用的地方也要then一下。

UserBLL.GetByName = function(name) { return co(function() {return yield User.findOne({where: {username: name}}) })}UserBLL.GetByName(’xxx’).then(function(res) { console.log(res)})回答2:

UserBil.getByName = () => { var result = co.wrap(function* (){return request// something you want to return })return result(true).then(function(value){ return value })}

相关文章: