Использования HTTParty
камня для подключения к погоде API У меня есть следующий метод:HTTParty не определен метод «+» для ноля: NilClass
def weather_search
@city_name = params[:city_name]
url = URI.encode("api.openweathermap.org/data/2.5/weather?q=#{@city_name}&APPID=#{API_TOKEN}")
@search_result = HTTParty.get(url)
end
установлен камень.
Использование почтальона я могу достичь API без проблем со следующим URL
api.openweathermap.org/data/2.5/weather?q=banfield&APPID=xxxxxxxxxxxxxxx
Однако в моих рельсах 4 приложения это тот же URL бросает ошибку
undefined method '+' for nil:NilClass
на линии, где я объявляю
@search_result = HTTParty.get(url)
Я нашел this и this other сообщению субъект, но оба они не помогают.
Трассировка стека:
Started POST "/search_city_weather" for 127.0.0.1 at 2016-03-30 23:50:13 +0100
Processing by WeatherChecksController#weather_search as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "city_name"=>"banfield", "commit"=>"Search"}
api.openweathermap.org/data/2.5/weather?q=banfield&APPID=xxxxxxxxxxxxxxxxxx
Completed 500 Internal Server Error in 11ms
NoMethodError (undefined method `+' for nil:NilClass):
app/controllers/weather_checks_controller.rb:24:in `weather_search'
Rendered /home/xxxx/.rvm/gems/ruby-2.2.2/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
Rendered /home/xxxx/.rvm/gems/ruby-2.2.2/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
Rendered /home/xxxx/.rvm/gems/ruby-2.2.2/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
Rendered /home/xxxx/.rvm/gems/ruby-2.2.2/gems/actionpack-4.1.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.6ms)
Любая помощь будет оценена.
, что делает StackTrace от эта ошибка говорит? –
Привет @BenY видеть трассировку стека в основном корпусе Q – JsonP
Почему ваш URI не имеет 'http: //' в нем? – tadman