从地理位置获取 IP 时出错-db.com
error when fetching IP from geolocation-db.com
useEffect(() => {
const get_ip = async () => {
console.log("got here");
const response = await fetch("https://geolocation-db.com/json/");
const data = await response.json();
console.log(data);
};
get_ip();
}, [])
这是打印出来的错误:
GET https://geolocation-db.com/json/ net::ERR_BLOCKED_BY_CLIENT
这里有什么问题?为什么我无法从该网站获取 IP?
我的浏览器可以正常访问
GET 请求被广告拦截程序阻止。
useEffect(() => {
const get_ip = async () => {
console.log("got here");
const response = await fetch("https://geolocation-db.com/json/");
const data = await response.json();
console.log(data);
};
get_ip();
}, [])
这是打印出来的错误:
GET https://geolocation-db.com/json/ net::ERR_BLOCKED_BY_CLIENT
这里有什么问题?为什么我无法从该网站获取 IP?
我的浏览器可以正常访问
GET 请求被广告拦截程序阻止。