2017-07-19 194 views
1

我想執行API請求並在我的網站的表格中顯示正文。我正在使用Node.JS,React和Request。這是我的代碼:如何獲取回調函數的返回值[API請求]

var requestResult = Request.get('https://test.ipdb.io/api/v1/assets/?search=asdf', (err, res, body) => { 
 
    return body; 
 
});

這顯然是行不通的。我可以console.log(body),但我希望API迴應在回調函數外部可用。那可能嗎?

+0

回調並不意味着返回一個值。返回值更多的是編寫代碼的同步方式。在回調中,需要設置一個值,然後調用下一個函數。 – Jay

回答

2

如果你使用回調方法,那麼你應該繼續在回調函數中的工作。
例子:

app.get('/', function(req, res, next) { 
    Request.get('https://test.ipdb.io/api/v1/assets/?search=asdf', (err, res, body) => { 
    console.log(body); 
    // do any other job here 
    res.send(body); 
    }); 
}); 

其他方法,你可以在2017年使用:

  • promises
  • 協程+發電機
  • 異步+等待

你可以得到更多的信息here

+0

哇...我曾經做PHP多年,但這對我來說似乎太複雜了。不管怎樣,謝謝你! – shnoop

+0

花點時間瞭解這一點。這是nodejs中事情如何工作的基礎知識。 – Lazyexpert