2011-07-28 7 views
0

こんにちは、私はGeokitプラグインをRuby on Rails 3で使用しています。私は適切な方法ではないの原点値を与えるときしかし、それは、Geokit ::ジオコーダ:: GeocodeErrorをここでGeokit :: Geocoders :: GeocodeError in rails 3を処理する方法

が私のコードされてスロー:

@listing = Listing.geo_scope(:origin=>"sdfaasssssssdfdfsdfdfdfdfsdfsdfsdfsdfsdf") 

エラー:

Geokit::Geocoders::GeocodeError: Geokit::Geocoders::GeocodeError 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/geokit-1.5.0/lib/geokit/mappable.rb:282:in `normalize' 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/geokit-rails3-0.1.2/lib/geokit-rails3/acts_as_mappable.rb:229:in `normalize_point_to_lat_lng' 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/geokit-rails3-0.1.2/lib/geokit-rails3/acts_as_mappable.rb:189:in `extract_origin_from_options' 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/geokit-rails3-0.1.2/lib/geokit-rails3/acts_as_mappable.rb:111:in `geo_scope' 
from (irb):3 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/railties-3.0.3/lib/rails/commands/console.rb:44:in `start' 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/railties-3.0.3/lib/rails/commands/console.rb:8:in `start' 
from C:/Ruby192/lib/ruby/gems/1.9.1/gems/railties-3.0.3/lib/rails/commands.rb:23:in `<top (required)>' 
from D:/ariv/projects/RubyMine/rentstore/script/rails:6:in `require' 
from D:/ariv/projects/RubyMine/rentstore/script/rails:6:in `<top (required)>' 
from -e:1:in `load' 
from -e:1:in `<main> 

どのように処理するために、このエラー?

おかげで、

L. Arivarasan

+0

あなたが右のそれを救うことができますしたいですか? –

答えて

1

私はあなたが本当に何を意味するか知らないが、多分あなたは、この

begin 
     @listing = Listing.geo_scope(:origin=>"sdfaasssssssdfdfsdfdfdfdfsdfsdfsdfsdfsdf") 
    rescue Geokit::Geocoders::GeocodeError 
     # handle the error here :-) 
    end 
のようなものが
+0

try catchブロックで処理する必要があります。ありがとう! – arivarasan

関連する問題