1

在这里,我将 user.id 作为参数 dd 发送

<h3><%= link_to("Lend Asset", {:controller => 'empassets', :action=> 'index', :dd => user.id})%></h3>

在控制器 empassets 我通过

  def index
     @id = params[:dd]
     @empassets = Empasset.where(:ad => @id)
    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @empassets }
    end
  end

  def show
     @id = params[:dd]
    @empasset = Empasset.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @empasset }
    end
  end

  def new
     @id = params[:dd]
    @empasset = Empasset.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @empasset }
    end
  end

  def edit
     @id = params[:dd]
    @empasset = Empasset.find(params[:id])
  end

我在所有新的显示编辑方法中都需要这个@id。但它只包含索引,正如我在索引中提到的那样。如果单击 Lend 资产,我该如何做到这一点,那么 @id= params[:id] 在所有方法中都具有价值。怎么可能使它可用于另一个 @id = params[:id] 未在该控制器中发送?

4

3 回答 3

4

如果您将当前用户存储在会话中,然后在控制器中使用过滤器捕获用户模型,可能会更好,如下所示:

# controllers/application_controller.rb
class ApplicationController < ActionController::Base
  before_filter :set_current_user_in_model

  private
  def current_user
    @current_user ||= User.find(params[:dd]) || User.new
  end

  # This method save the current user in the user model, this is useful to have access to the current user from a model and not from the controller only
  def set_current_user_in_model
    User.current_user current_user if not current_user.nil?
  end
end

# models/user.rb
class User < ActiveRecord::Base
  #...
  # This is useful to get the current user inside a model
  def self.current_user(user = nil)
    @@current_user = (user || @@current_user)
  end
  #...
end

基本上,我的想法是将该信息存储在带有过滤器的模型中,如果您想获取信息(用户 ID),可以使用会话。

def index
  session[:user_id] = params[:dd]
  @empassets = Empasset.where(:ad => session[:user_id])
  respond_to do |format|
    format.html # index.html.erb
    format.json { render json: @empassets }
  end
end

def show
  @empasset = Empasset.find(session[:user_id] || params[:dd])

  respond_to do |format|
    format.html # show.html.erb
    format.json { render json: @empasset }
  end
end

注意我使用session[:user_id] || params[:dd]的原因可能是会话信息未建立并且您为其提供了:dd参数。但是如果你想稳定@id变量,你可以像以前一样使用过滤器。

但我不知道主要问题是什么。

编辑

# controllers/application_controller.rb
class ApplicationController < ActionController::Base
  before_filter :set_dd_param, :except => :index
  def index
    session[:dd] = params[:dd] # Here you write the session
    @current_user ||= User.find(params[:dd]) || User.new
  end
  # ...
  protected
  def set_dd_param
    params[:dd] = session[:dd] || -1 # Here you read the session a write the params variable
  end
end

抱歉耽搁了。

于 2012-11-05T13:23:02.897 回答
0

除非您想将其存储到会话中,否则无法自动使 @id 可用于控制器中的每个方法。但是您可以将参数添加到每个链接/表单,如下所示:

<%= link_to("New Asset", {:controller => 'empassets', :action=> 'new', :dd => @id})%>

<%= link_to("Show Asset", {:controller => 'empassets', :action=> 'show', :dd => @id})%>

这些链接在索引视图中并@id在 index 方法中设置。

不完全确定这里的目标是什么,但这样的事情可能会奏效。

于 2012-11-05T11:10:51.083 回答
0
def index
 $id = params[:dd]
 @empassets = Empasset.where(:ad => @id)
respond_to do |format|
  format.html # index.html.erb
  format.json { render json: @empassets }
end
于 2012-11-05T11:36:57.920 回答