📅  最后修改于: 2022-03-11 14:52:57.758000             🧑  作者: Mango
function getIp(callback) {
fetch('https://ipinfo.io/json?token=', { headers: { 'Accept': 'application/json' }})
.then((resp) => resp.json())
.catch(() => {
return {
country: 'us',
};
})
.then((resp) => callback(resp.country));
}