如何从嵌套函数返回数据

时间:2018-08-01 15:46:16

标签: javascript node.js request

我是Node js的新手,我尝试使用google进行搜索,但没有任何帮助,我希望我的函数P2p返回分配给request.get的价格和数量

我的代码:-

function P2p(mode,coin){
    coin=coin.toLowerCase();
    price="";
    quantity="";
  request.get(url,function(err,response,body){
      a=(JSON.parse(body))['rates'];
        for(i=0;i<a.length;i++){
        if(a[i].coin==coin)
        {
        var price=JSON.parse(body).price;
        }
        }
     var quantity=JSON.parse(body).quantity;
     return [price,quantity];
});
}

0 个答案:

没有答案