javascript - 我应该如何使用水线和 Bluebird 处理 promise 和回调?

标签 javascript asynchronous sails.js waterline bluebird

我在使用 sails 时遇到了多个问题,因为我无法理解水线 promise 及其逻辑。

我尝试了内置的 bluebird Promise 以及 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));
  });
},

在上面我可以在控制台中看到“从未达到”。为什么!?

这是我使用异步模块尝试的:

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

因为异步代码将在之后执行。我建议您阅读thisthis更好地理解异步回调。

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/

相关文章:

javascript - 我可以使用 async/await 来等待 JavaScript 中的多个事件吗?

node.js - sails :How to join two different models using waterline

node.js - 使用 MongoDB + Sails.js 进行复杂排序

node.js - 在 Sails.js 中使用一个请求创建/更新多条记录

javascript - 如何将[object Object]传递给JS函数

javascript - 让函数构造函数使用参数?

javascript - Vue cli 3 项目别名 src 到 @ 或 ~/不工作

javascript - 通过Js发送时如何隐藏名字

c# - 在 C# 中生成异步方法调用 - AOP?

javascript - 在 promise 解决之前表达 JS 退出 API