- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用风 sails 时遇到了多个问题,因为我无法理解水线 promise 及其逻辑。
我尝试了内置的 bluebird promises 和 async.waterfall
实现,但都没有成功。
简而言之,我正在为执行数据库查询的 API 编写代码,并尝试使用回调,但它从不响应。
这是我在纯粹的 promise 上所做的尝试:
changeFormation: function (request,response) {
console.log("changeFormation");
var lineupId = request.params.id;
var newFormation = request.param('formation');
var newLineUp = request.param('lineup');
console.log("Receiving" + newFormation);
if ( ["5-4-1", "5-3-2", "4-5-1", "4-4-2", "4-3-3", "3-5-2", "3-4-3"].indexOf(newFormation) === -1 ) {
console.log("No válida");
return response.send(409, "La táctica elegida no es válida");
}
LineUp.findOne({id: lineupId}).
then(function (foundLineUp) {
console.log(foundLineUp);
if (!foundLineUp)
return response.send(404);
if (! foundLineUp.formation) {
foundLineUp.formation = newFormation;
LineUp.update({id: foundLineUp.id}, foundLineUp).exec(function (err, saved) {
if (err)
return response.send(500, JSON.stringify(err));
return response.send(202, JSON.stringify(saved));
});
}
// If a formation was previously set
else if (Array.isArray(newLineUp) && newLineUp.length > 0) {
newLineUp.formation = newFormation;
LineUp.update({id: newLineUp.id}, newLineUp).exec(function (err,saved) {
if (err)
return response.send(500,JSON.stringify(err));
return response.stringify(202, JSON.stringify(saved));
});
}
console.log("Never reached");
}).
catch(function (err) {
console.log(err);
response.send(500,JSON.stringify(err));
});
},
在上面我可以在控制台中看到 “Never reached”
。为什么!?
这是我尝试使用异步模块的结果:
addPlayer: function (request,response) {
// console.log("Add player");
var lineupId = request.params.id;
var receivedPlayer = request.param('player');
var playerId = receivedPlayer.id;
var bench = receivedPlayer.bench;
var place = receivedPlayer.place;
var e, r;
async.waterfall([
function (cb) {
LineUp.findOne().where({id: lineupId}).exec(function (err, foundLineUp) {
cb(err,foundLineUp);
});},
function (lineup,cb) {
Player.findOne().where({id: playerId}).exec(function (err,foundPlayer) {
cb(err,lineup, foundPlayer);
});},
function (lineup, player, cb) {
if (!player) {
console.log("Jugador no existe");
cb(null, {status: 409, msg: "El jugador " + playerId + " no existe"});
}
if (!lineup.formation) {
console.log("No hay táctica")
cb(null, {status: 409, msg: "No se ha elegido una táctica para esta alineación"});
}
if (lineup.squadIsComplete()) {
console.log("Ya hay 15");
cb(null, {status: 409, msg: "La plantilla ya contiene el máximo de 15 jugadores"});
}
if (lineup.playerWasAdded(player.id)) {
console.log("Jugador ya en alineación")
cb(null, {status: 409, msg: "El jugador ya ha sido agregado a la alineación"});
}
if (lineup.fieldIsComplete() && !bench) {
console.log("Ya hay 11 en el campo");
cb(null, {status: 409, msg: "Ya se han agregado los 11 jugadores de campo"});
}
player.bench = bench;
player.place = place;
lineup.players.push(player);
console.log("MaxForeign " + lineup.reachesMaxForeignPlayers());
console.log("BudgetLimit " + lineup.reachesBudgetLimit());
console.log("SameTeam " + lineup.reachesMaxSameTeamLimit());
console.log("reachesMaxSameFavoriteTeamLimit " + lineup.reachesMaxSameFavoriteTeamLimit());
// If any of rule restrictions evaluates to true ...
// Using lodash _.some with out second argument which defaults to _.identity
/* if ( _.some([ lineup.reachesMaxForeignPlayers(),
lineup.reachesBudgetLimit(),
lineup.reachesMaxSameTeamLimit(),
lineup.reachesMaxSameFavoriteTeamLimit()]) ) {
return response.send(409, "La inclusión de este jugador no satisface las reglas del juego");
}*/
LineUp.update({id: playerId}, lineup).exec(function (err, saved) {
cb(err, {status: 202, msg: JSON.stringify(saved)});
});
}
],
function (err, result) {
console.log("About to respond");
if (err)
respond.send(500);
else
response.send(result.status, result.msg);
});
console.log("Never reached");
},
这不是超时,但奇怪的是它没有在应该更新文档的时候更新文档。它正在记录 “从未到达”
,然后是 “即将响应”
,但我想这是正常的。
到目前为止,我应该如何处理这一切?
最佳答案
In this above I can see in console "Never reached". Why!?
因为您将异步代码与同步代码混合在一起。如果你这样做:
function(){
console.log('init');
someAsyncMethod(function callback(){
return console.log('async done');
});
console.log('Never reached');
}
你会得到:
init
Never reached
async done
因为异步代码会在之后执行。我建议你阅读 this和 this更好地理解异步回调。
This gives not a timeout but it's strangely not updating the document when it should.
很难说这是怎么回事,因为我们不知道 LineUp
的模型定义我们不知道 lineup
的内容update
前后称呼。你确定LineUp.update()
跑了?为什么不添加 console.log()
在它的回调中看到结果?
So far, how should I handle it all?
在我看来,您离实现目标不远了。如果您分享LineUp
的模型定义和更多日志记录,我们将能够为您提供更多帮助。
关于javascript - 我应该如何处理水线和 Bluebird 的 promise 和回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30949282/
bluebird.js和bluebird.core.js有什么区别? 什么时候应该使用bluebird.core.js而不是bluebird.js? 我无法在bluebird site或其他地方找到任
我正在从异步转换为 Bluebird,但不知道如何打破循环 这是我想要实现的目标: 循环数据数组。 对于每个项目,检查它是否存在于数据库中。 将一个项添加到数据库(第一个不存在的项),然后退出.eac
我试图用 .try(function(){}).catch(function(){}) 块返回一个 promise 。我的问题是由我的 promise 类型引起的。 deleteProcess
我正在尝试使用 bluebird 的 .return() 来扩展 promise 解析值方法。 目前我正在使用以下代码: doSomethingAsync() // assu
我刚刚开始使用 Promise 和 Bluebird。调试时我可以看到我的函数执行了两次: 首先我收到此错误:TypeError:未捕获错误:无法读取未定义的属性“then” 然后我看到函数再次执行,
我想测试数组的每个元素,直到满足条件,然后跳过其余的。这是我想出的代码,它似乎有效,但我不确定它是否真的安全或有意想不到的副作用。欢迎其他解决方案。 let buddyAdded = false; r
假设我有以下 node.js 代码 function foo() { return promiseOne().then(function(result) { return pr
假设我想在从数据库查找用户后同时发送电子邮件并向客户端推送通知,我可以这样写 User.findById(userId).exec() .then(() => sendMail()) .then(()
.call 方法的 Bluebird 文档有 code sample标记为“链接破折号或下划线方法”。 下面的代码片段中链接的 .then(_) 的用途是什么? var Promise = requi
是否有某种方法可以检索从上一个 then 回调返回的任何内容(或传递给初始 Promise.resolve()/resolve())? const p = Bluebird.resolve().the
我有以下代码。当 f2 没有抛出错误时,它工作正常。 如果有错误,它会生成一个Unhandled rejection Error。 重写代码以避免 Unhandled rejection Error
我有一个来自这篇文章的后续问题:Chaining Requests using BlueBird/ Request-Promise 我对 promise 很陌生,所以请原谅我的天真。我成功地实现了这段
我是 Bluebird 的新手,我正在尝试创建一个新用户,但 reject 函数没有按预期工作。 问题是它为我创建了用户,即使它启动了错误There nickname is already in us
我正在尝试实现剪刀石头布游戏的 CLI 版本。我正在使用查询器模块来处理 IO。我的主要功能如下所示: RockPaperScissors.prototype.gameLoop = function(
此代码运行正常: let promise; try { promise = parent(); //but I want: await parent(); await cont
在 promise 了 fs-extra 后,我知道我可以使用 then 来访问文件。我猜想有某种机制,在获取文件后,它知道要移动到 then 链中的下一个链接。然而,接下来的then我只是放置了一个
我有以下代码。它按预期工作,没有抛出未处理的拒绝错误。 p = new Promise (fulfill, reject) -> reject new Error 'some error' p.c
我期待 Bluebird forgotten return warning出现,但由于某种原因它不起作用。 A demo : const Bluebird = require('bluebird');
我正在使用 bluebird图书馆结束memcached . memcached.set('foo', 'bar', 10, function (err) { /* stuff */ }); 此函数不
我正在尝试如下使用 Bluebird 的协程: var p = require('bluebird'); //this should return a promise resolved to valu
我是一名优秀的程序员,十分优秀!