0

使用 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'

我在这里做错了什么?

4

1 回答 1

1

如果您需要 WeatherLookup 中的城市,则需要将其传递给初始化程序。实例变量只绑定到它们各自的视图。

@weather_lookup = WeatherLookup.new(@city)

attr_accessor :city # optional

def initialize(city)
  @city = city
  weather_hash = fetch_weather
end
于 2012-09-08T04:40:57.707 回答