提问人:carlosx2 提问时间:11/17/2023 最后编辑:carlosx2 更新时间:11/17/2023 访问量:19
js 中的批量 API 货币兑换请求 [已关闭]
Bulk API currency exchange requests in js [closed]
问:
我有以下一段代码,用于交换两个金额的单个请求。只有 api.getgeoapi.com 的文档没有解释如何提供这些值。所以我对热把它给他们一无所知。我写了这篇文章,只需一个金额就很容易,但转换多种货币似乎给出了成功的响应,但不是正确的值。
setShippingPrice = ["30.0", matchedPackages[0].rate_1.toString()];
var baseCurrency = 'EUR';
// Make request to exchange rate API to convert shipping price to desired currency
var requestURL = 'https://api.getgeoapi.com/v2/currency/convert?api_key=761be1a4474682b30297e16d0069b96a7bd4c18a&format=json&from=' + baseCurrency + '&to=' + currencyCode + '&amount=' + setShippingPrice;
console.log('request url', requestURL);
var request = new XMLHttpRequest();
request.open('GET', requestURL);
request.responseType = 'json';
request.send();
关于我如何处理这个问题的任何想法?
答: 暂无答案
评论