浙江省高等学校教师教育理论培训

微信搜索“教师资格证岗前培训”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
Rails获取客户端IP地址
2010-03-26 21:47

Example Rails Code

In RAILS_ROOT/app/controllers/show_my_ip_controller.rb:

  1. class ShowMyIpController < ApplicationController  
  2.   
  3.   def index  
  4.     @client_ip = request.remote_ip  
  5.   end  
  6.   
  7. end  

In RAILS_ROOT/app/views/show_my_ip/index.html.erb:

  1. Your IP address is <%= @client_ip %> 


posted on 2011-08-19 22:58  lexus  阅读(469)  评论(0编辑  收藏  举报