fix(更改区域): 区域更改为运营商

This commit is contained in:
2021-07-08 11:39:43 +08:00
parent ccbae8531d
commit f37264f5ab
5 changed files with 35 additions and 36 deletions

View File

@ -13,7 +13,7 @@ type resp struct {
IP string `json:"ip"`
Err string `json:"err"`
City string `json:"city"`
Area string `json:"area"`
Isp string `json:"isp"`
}
func init() {
@ -35,12 +35,12 @@ func IpAPI(writer http.ResponseWriter, request *http.Request) {
ip, _, _ = net.SplitHostPort(request.RemoteAddr)
}
rw := &resp{IP: ip}
city, area, err := qqwry.QueryIP(ip)
city, isp, err := qqwry.QueryIP(ip)
if err != nil {
rw.Err = err.Error()
} else {
rw.City = city
rw.Area = area
rw.Isp = isp
}
b, _ := json.MarshalIndent(rw, "", " ")
_, _ = writer.Write(b)