0
我試圖把這種終點:https://blockchain.info/rawtx/$tx_hash
以下列方式使用請求響應模塊:使用參數在節點中獲取請求的最佳做法是什麼?
api.get('/transaction/:hash', (req, res) => {
const hash = (req.params.hash);
let uri = 'https://blockchain.info/rawtx/' + hash;
rp(uri).then(function (txInfo) {
let result = JSON.parse(txInfo);
}
有呼叫終點,而不是僅僅串聯的說法更清潔的方式嗎?
可以使用字符串模板:'let uri = \'https://blockchain.info/rawtx/$ {req.params.hash} \''' – tymeJV