使用Jails on Rails应用程序进行客户端地理编码

时间:2013-03-23 04:36:23

标签: javascript ruby-on-rails ruby-on-rails-3 google-maps-api-3 heroku

我正在尝试客户端地理编码由于我遇到的这个问题(超过Heroku的查询限制):https://github.com/alexreisner/geocoder/issues/222

我的网址中的lat / long显示但是我无法显示我的搜索结果。

我认为问题出在第10行的index.html.erb:<%if params [:search] .present? %GT;

当我执行搜索查询时,我的浏览器中的B / c,调试参数显示参数并且它绕过'if'语句并执行'else',推断出没有搜索参数存在或者我没有正确陈述'if'陈述。

搜索示例:

URL: http://localhost:3000/places?utf8=✓&q=hoover%2C+alabama&c=%2833.4053867%2C+-86.81137810000001%29

调试参数: 你好 ---!ruby / hash:ActiveSupport :: HashWithIndifferentAccess utf8:✓ 问:胡佛,阿拉巴马州 c:(33.4053867,-86.81137810000001) 行动:指数 控制器:地方

为什么我的搜索结果没有显示?请在此帖子下方查看我的评论,以获取相关代码的链接。

1 个答案:

答案 0 :(得分:0)

嗯,我认为你的form_tag方法应该是post而不是get?