0
如何在JavaScript中獲取客戶端IP,angularjs2並限制對其他用戶的訪問。如何通過JavaScript,angularjs2獲取客戶端IP並限制對其他用戶的訪問。
如何在JavaScript中獲取客戶端IP,angularjs2並限制對其他用戶的訪問。如何通過JavaScript,angularjs2獲取客戶端IP並限制對其他用戶的訪問。
簡單的HTTP GET請求,可以幫助你
constructor(private http: Http) { }
getIp(): Promise<Hero[]> {
return this.http.get(this.heroesUrl)
.toPromise()
.then(response => {
console.log(response);
})
.catch(this.handleError);
}
private handleError(error: any): Promise<any> {
console.error('An error occurred', error);
return Promise.reject(error.message || error);
}
你的反應會是這樣
{
"ip": "xxx.xx.xxx.xxx",
"city": "Chennai",
"region": "Tamil Nadu",
"country": "IN",
"loc": "10.0833,79.2833",
"org": "AS4755 TATA COMM MAINTAINER"
}
添加你嘗試過什麼 –