我正在尝试调用此端点: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);
}
有没有一种更简洁的方式来调用端点而不是仅仅连接参数?