1

我正在使用 Rails 版本 3.2.10。我正在尝试将具有许多属性的模型实例变量从一个动作传递到不同控制器中的另一个动作。

我尝试了很多事情,但没有得到解决方案。

第一个控制器方法:

def create
if current_user
  auth = request.env["omniauth.auth"]
  @applicant = Applicant.new
  if (auth['provider'] == "linkedin")
    puts auth.info.image
    linkedinProfileImport(auth)
    @applcant.first_name = auth.info.first_name
    @applcant.second_name = auth.info.last_name

   redirect_to controller => 'job_applicants', :action => 'newProfile' , :id => params[:id]
    end   

第二种控制器方法:

 def newProfile
 @job = Job.find_by_id(params[:id])
 puts @job.id
 @applicant = Applicant.new
 @applicant = @applicant

结尾

我必须将@ applicant变量从第一个控制器访问到第二个控制器方法。

4

2 回答 2

4

你不能那样做......你必须在第一个动作中将你的对象存储在数据库中,然后在第二个动作中检索它。

使用 redirect_to,您可以像在 url 中一样传递参数,而不是完整的对象。在这里,您将在 redirect_to 中传递保存的对象 ID。

于 2013-05-07T16:28:55.307 回答
0

您应该将大量此类逻辑从控制器移到模型中。

所以,我会有一个模型方法:

def create #in the controller
  if current_user
    auth = request.env["omniauth.auth"]
    @applicant = Applicant.create_from_omniauth_hash(auth)

   redirect_to controller => 'job_applicants', :action => 'newProfile' , :id => params[:id]
end  



class Applicant < ActiveRecord::Base
  def self.create_from_omniauth_hash(auth)
    applicant = Applicant.new
    if (auth['provider'] == "linkedin")
      puts auth.info.image
      linkedinProfileImport(auth)
      applicant.first_name = auth.info.first_name
      applicant.second_name = auth.info.last_name
    end
    create_new_profile(applicant)
    applicant.save!
  end

  def create_new_profile(applicant)
    applicant.job = "job"
  end
end
于 2013-05-07T16:33:05.550 回答