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请求被广告拦截程序阻止。