Rails 3,将本地IP地址插入记录字段

时间:2012-07-13 12:55:35

标签: ruby-on-rails-3 controller ip

我有一个Rails 3应用程序,我想在我的一个模型中添加一个字段,该字段将被称为localip。

如何将当前本地IP添加到字段中?

控制器中的标准create方法如下:

# POST /prescriptions
  # POST /prescriptions.json
  def create
    @prescription = Prescription.new(params[:prescription])

    respond_to do |format|
      if @prescription.save
        format.html { redirect_to @prescription, notice: 'Prescription was successfully created.' }
        format.json { render json: @prescription, status: :created, location: @prescription }
      else
        format.html { render action: "new" }
        format.json { render json: @prescription.errors, status: :unprocessable_entity }
      end
    end
  end

是否有某种方法可以使用create方法插入它?

1 个答案:

答案 0 :(得分:2)

我认为“当前本地IP”是指客户端的IP。 如果是这样,那么您可以在控制器操作中从env哈希访问它 -

current_local_ip = request.env['REMOTE_ADDR']

current_local_ip = request.env['REMOTE_HOST']

如果你的意思是当前本地ip的服务器ip,只需查看HTTP_HOST密钥的值。