回调函数值访问Node.js中的其他函数

时间:2018-10-23 13:49:02

标签: node.js callback

当我的回调函数(setid)调用另一个函数(returnbCallback)时,但没有传递数据,并且我看到的值为“ null”。

var swfitprofileName = [];

function setid (swiftid){

  crud.getswift(swiftid).then(function (response) {
    returnbCallback(response);
  }).catch(function (err) {
    return ("error:" + err);
  });

}

function returnbCallback(data){
  console.log("profileName1",swfitprofileName);
  return swfitprofileName = data;
}

console.log("swfitprofileName",swfitprofileName);

如何访问另一个函数中的回调结果?

0 个答案:

没有答案