在单独的函数中使用节点中的回调结果

时间:2016-08-30 23:03:24

标签: javascript node.js q

我可能在某处忽略了这一点,所以我正在寻找建议。

我有一个nodejs服务器,它正在侦听客户端连接,并根据收到的数据调用API。

对该API的第一次调用会获得一个ID,该ID需要在后续调用中使用才能将它们组合在一起。

我苦苦挣扎的是,对API的调用必然是异步的,而在回调中,我将ID分配给变量。虽然API服务器正在处理该异步调用,但是更多的数据来自客户端并且需要更多的API调用但我不能触发它们直到我知道第一次调用的结果,因为第二次调用取决于它

处理此问题的正确方法是什么?我觉得我应该使用Q来承诺第一次API调用的结果,但我不确定它应该如何构建。或者我应该排队API调用直到第一次完成?我该怎么做?

示例问题代码:

var server = net.createServer();

//set up the callback handler 

server.on('connection', handleConnection);

handleConnection(conn) {
  //do some stuff...
  firstAPICall();
  conn.on('data', handleData);
}

handleData(data) {
  //do some stuff...
  otherAPIcall();
}

firstAPICall() {
  client.get("http://myAPI/getID", function (data, response) {
    conn.myID = data[0].myID;
    }
  }
}

otherAPICall() {
  //How do I make sure I actually have a value
  //in conn.myID from the first function???
  client.post("http://myAPI/storeData", { data: {myID:conn.myID, data:someData} }, function (data, response) {
    //do some stuff...
    }
  }
}

4 个答案:

答案 0 :(得分:1)

尝试使用promises。然后使用'then'调用otherAPICall()

答案 1 :(得分:1)

我认为您可以假设他们将在连接后立即发送数据。因此,如果您有ID,您可以简化并只检查其他API,如果没有,您可以使用回调。 Promise或async/await关键字可能会让事情变得更好,但不是必需的。

var server = net.createServer();

//set up the callback handler 

server.on('connection', handleConnection);

handleConnection(conn) {
  conn.on('data', handleData(connm, data));
}

handleData(conn, data) {
  //do some stuff...
  otherAPIcall(conn);
}

checkID(conn, cb) {
  if (!conn.myID) {
    client.get("http://myAPI/getID", function (data, response) {
      conn.myID = data[0].myID;
      cb();
    });
  } else {
    cb();
  }
}

otherAPICall(conn) {
  checkID(conn, function() {
    client.post("http://myAPI/storeData", { data: {myID:conn.myID, data:someData} }, function (data, response) {
      //do some stuff...
    });
  });
}

答案 2 :(得分:1)

是的,你应该使用promises。对从第一次调用异步解析的id做出承诺,然后在后续调用中使用它:

handleConnection(conn) {
  //do some stuff...
  var idPromise = firstAPICall();
  conn.on('data', function handleData(data) {
    //do some stuff...
    otherAPIcall(idPromise).then(function(result) {
      …
    });
  });
}

firstAPICall() {
  return Q.Promise(function(resolve, reject) {
    client.get("http://myAPI/getID", function (data, response) {
      resolve(data[0].myID);
    });
  });
}

otherAPICall(idPromise) {
  return idPromise.then(function(myID) {
    return new Promise(function(resolve, reject) {
      client.post("http://myAPI/storeData", {
        data: {myID:myID, data:someData}
      }, function (data, response) {
        //do some stuff...
        resolve(…);
      });
    });
  });
}

可能你应该考虑在一个额外的函数中为client.get调用的结果创建一个承诺。还要确保在那里正确处理错误并使用它们调用reject。如果client将使用节点回调约定,则Q甚至具有some nice helper functions

答案 3 :(得分:0)

promises可以链接值,并且在返回值

发生回调后总是被解析
function async(value) { 
var deferred = $q.defer();
var asyncCalculation = value / 2;
deferred.resolve(asyncCalculation);
return deferred.promise;
}

var promise = async(8) 
.then(function(x) {
    return x+1;
})
.then(function(x) {
    return x*2;
})
.then(function(x) {
    return x-1;
});
promise.then(function(x) { 
console.log(x);
});

此值传递所有成功回调,因此记录值9((8/2 + 1)* 2 - 1)。