Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

测试promise,请问我这样写为什么得到我预期的?

$
0
0

var Promise = require(‘bluebird’) var obj = { func1: function () { return ‘hehe’ }, func2: function () { return ‘xix’ } } console.log("==================================") Promise.promisifyAll(obj)

obj.func1Async().then(function (result) { console.log(result) }) 定义一个obj对象,把它promise化,本来想通过异步函数func1Async再调用then可以得到fun1的返回值,结果程序什么输出也没有? 是我理解错了么?求大神解答


Viewing all articles
Browse latest Browse all 14821

Trending Articles