将值存储到从函数返回的变量中

时间:2019-03-21 11:14:51

标签: node.js variables scope

如何存储在函数中返回的值?我可以打印该值,但无法将其存储在变量中。这是我的代码:

exports.realtimeValues = function (req,res ){
  var symbol = "shirt";
  const price = globalFuc.getOutStShare(symbol,res,function(val){
    console.log( val);
    return price ;
  });
  if(price ){
    console.log(price );
    return res.status(200).send('fetch data');   
  }else{
    return res.status(500).send('fetch data');    
  }

我在控制台中获取了该值,但是该值未存储在变量中;价格不确定。

0 个答案:

没有答案