我正在尝试使用javascript获取基于ipinfo提供的货币符号。到目前为止,我可以使用下面的代码从ipinfo获取国家名称和其他信息,但是我需要找到一种方法来使用这些信息来了解该特定国家/地区使用的货币。
$.get("https://ipinfo.io", function(response) {
alert(response.country);
}, "jsonp");
最佳答案
这回答了你的问题了吗?
$.get("https://ipinfo.io", function(response) {
$.get("https://restcountries.eu/rest/v2/alpha/"+response.country.toLowerCase(), function(res) {
console.log(res.currencies);
});
}, "json");
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
关于javascript - 如何获得基于ipinfo提供的货币符号?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62619171/