也许我不理解承诺,为什么我会在functions.dioNic结束之前重定向?
app.get('/dionic/scan', function(req, res) {
var functions = require("./functions.js");
var scrape = require("./scrapers/dionic.js");
//render index.ejs file
scrape.scrapeDio
// Remove duplicates in array data
.then(dedupe)
// Save
.then(functions.dioNic)
.then(console.log("Guardado"))
.then(res.redirect('/'));
});
答案 0 :(得分:0)
您正在调用这些函数并将其返回值传递给then
,而不是自己传递函数:
.then(console.log("Guardado"))
.then(res.redirect('/'));
这实际上是同样的问题as described here。
您可以使用bind来获取带有参数bound的函数:
.then(console.log.bind(console, "Guardado"))
.then(res.redirect.bind(res, '/'));
如果您不喜欢bind的外观,也可以使用匿名函数:
.then( function () { console.log("Guardado") })
.then( function () { res.redirect('/') });