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);
}

有没有一种更简洁的方式来调用端点而不是仅仅连接参数?

4

1 回答 1

1

我认为这已经足够干净了。您的另一个选择是.concat(),但这只是速度较慢。如果您更喜欢模板并且处于支持 es6 的环境中,那么您可以使用 let uri = 'https://blockchain.info/rawtx/${hash}'; 正如上述评论中所建议的。但就像我说的,我认为你现在这样做的方式是符合目的的。

于 2017-08-31T18:09:39.053 回答