Tag Archives: Weather

Smart Weather

city = GetCookie(“city”); if(!city){    city = LookupCity(REMOTE_ADDR);    if(city){       SetCookie(“city”,city);    }    else{       city = “Beijing”;    } } WeatherShow(city); // TODO: GetCookie / SetCookie / LookupCity / WeatherShow

Posted in 网络 | Tagged , | Leave a comment