使用 IP 地址自动填写访问者所在国家/地区的表单
Posted
技术标签:
【中文标题】使用 IP 地址自动填写访问者所在国家/地区的表单【英文标题】:Autofilling a form with visitor's country using IP address 【发布时间】:2015-06-12 20:01:55 【问题描述】:这是我第一次这样做。我有一个新用户表格(投资者模型),我希望一旦加载表格,根据访问者的 IP,country
字段已经填写了国家。我听说过geoip
gem。不知道怎么用。这就是我试图做的。我从http://www.maxmind.com/app/geolitecountry
下载了GeoIP.dat.gz
,将其解压缩并放入我的应用程序的db
文件夹中。我不确定我是否走在正确的道路上。
宝石文件
source 'https://rubygems.org'
gem 'rails', '4.2.1'
gem 'pg'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'foundation-rails', '~> 5.5.2.1'
gem 'foundation-icons-sass-rails'
gem 'geoip', '~> 1.5.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'rails_12factor', group: :production
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
环境.rb
# Load the Rails application.
require File.expand_path('../application', __FILE__)
# Initialize the Rails application.
Rails.application.initialize!
config.gem 'geoip'
以下步骤在浏览器中显示cannot load such file -- geoip
错误。而且我什至无法继续尝试在表单中插入用户所在的国家/地区。任何帮助将不胜感激。
Investors_controller.rb
require 'geoip'
class InvestorsController < ApplicationController
@geoip ||= GeoIP.new("/db/GeoIP.dat")
remote_ip = request.remote_ip
if remote_ip != "127.0.0.1" #todo: check for other local addresses or set default value
location_location = @geoip.country(remote_ip)
if location_location != nil
@investor.country = location_location[2]
end
end
def new
@investor = Investor.new
end
def create
@investor = Investor.new(user_params)
if @investor.save
flash.now[:success] = "Welcome, you're now on your way to success!"
render "/static_pages/welcome"
InvestorMailer.welcome_email(@investor).deliver_now
else
render 'new'
end
end
def update
if @investor.update_attributes(user_params)
flash[:success] = "Updated"
else
render 'edit'
end
end
private
def user_params
params.require(:investor).permit(:name, :email, :country,
:phone)
end
end
【问题讨论】:
确保在将 geoip 添加到 Gemfile 后运行bundle install
。
这是我做的第一件事。
那么...实际的问题是什么?
@MarsAtomic 实际问题是如何根据用户的 ip 自动填写用户所在国家/地区的表单?
【参考方案1】:
Geocoder gem 取得了很大的成功。它几乎开箱即用:
在您的 Gemfile 中,添加:
gem geocoder
捆绑安装后,您可以直接在您的应用中查询 FreeGeoIP(每小时最多 10,000 个)。下面是控制台的一个示例,使用 Google 的 DNS IP:
013 > results = Geocoder.search("8.8.4.4")
=> [#<Geocoder::Result::Freegeoip:0x007fa285fddfc0 @data="ip"=>"8.8.4.4", "country_code"=>"US", "country_name"=>"United States", "region_code"=>"", "region_name"=>"", "city"=>"", "zip_code"=>"", "time_zone"=>"", "latitude"=>38, "longitude"=>-97, "metro_code"=>0, @cache_hit=false>]
014 > results.first.data["country_name"]
=> "United States"
如您所见,Geocoder gem 还提供了许多其他有用的数据。 :)
我强烈建议您阅读完整的Geocoder readme,因为它会为您提供提示和建议,您可以根据需要配置以进行地址查找的服务,以及作为测试等的实践。
我还建议您在缩小要查看的服务范围后,阅读这些服务(例如 Google 地图、Bing 等)的服务条款,因为 Geocoder gem 的自述文件并不总是可用迄今为止符合这些政策。
【讨论】:
【参考方案2】:尝试在 require 'geoip' 之前添加 require 'rubygems'
【讨论】:
以上是关于使用 IP 地址自动填写访问者所在国家/地区的表单的主要内容,如果未能解决你的问题,请参考以下文章