我正在使用NodeJS和Express并使用Bluebird进行承诺.我试图宣传app对象如下,但一旦promisified函数总是抛出错误.部分代码如下:
var express = require('express'),app = express(),bodyParser = require('body-parser'),Promise = require("bluebird"); app.postAsync = Promise.promisify(app.post); app.postAsync('/api/v1/users/update').then(function(req,res,next) { // never gets here }) .catch(function(err) { console.log("doh!!!"); });
我试图promisifyAll同样的效果.为什么它失败了,有没有办法宣传post / get?