1
爲什麼Promise.then()中的代碼未被調用?當我試圖使用Promise.promisify()提交一個函數時,我發現我在Promise.then()中編寫的代碼不起作用。我的代碼如遵循爲什麼Promise.then()中的代碼未被調用?
var Promise = require('bluebird');
var test = function(req) {
console.log('123');
};
var regist=Promise.promisify(test);
app.post('/test', function (req, res) {
reg.regist()
.then(function() {
console.log('456');
});
我發佈一個請求「/測試」,只看到123印在console.How我能在Promise.then代碼()工作?
[閱讀promisify文檔(HTTP ://bluebirdjs.com/docs/api/promise.promisify.html)以更好地理解你所做的錯誤假設,以及你的代碼做錯了什麼 –