一个最常用的服务就是 https://api64.ipify.org?format=json
function getPublicIpAddressFetch(callback) {
fetch("https://api64.ipify.org?format=json")
.then(response => response.json())
.then(data => {
const ipAddress = data.ip;
callback(ipAddress);
})
.catch(error => console.error('Error fetching IP address:', error));
}
getPublicIpAddressFetch(ip => {
console.log("当前电脑的公共 IP 地址是:", ip);
});
时小记,终有成。