使用 wunderground API 在我的城市页面上显示天气预报。
city_controller.rb
def show
@region = Region.find(params[:region_id])
@city = City.find(params[:id])
@weather_lookup = WeatherLookup.new
end
天气查找.rb
class WeatherLookup
attr_accessor :temperature, :icon, :condition
def fetch_weather
HTTParty.get("http://api.wunderground.com/api/a8135a01b8230bfb/hourly10day/lang:NL/q/IT/#{@city.name}.xml")
end
def initialize
weather_hash = fetch_weather
end
def assign_values(weather_hash)
hourly_forecast_response = weather_hash.parsed_response['response']['hourly_forecast']['forecast'].first
self.temperature = hourly_forecast_response['temp']['metric']
self.condition = hourly_forecast_response['condition']
self.icon = hourly_forecast_response['icon_url']
end
def initialize
weather_hash = fetch_weather
assign_values(weather_hash)
end
end
show.html.haml(城市)
= @weather_lookup.temperature
= @weather_lookup.condition.downcase
= image_tag @weather_lookup.icon
为了获取正确的天气预报,我认为我可以像在示例中那样将@city 变量放在 HTTParty.get URL 中,但是我收到错误消息 undefined method `name'
我在这里做错了什么?