ruby-on-rails – 如何在Rails模型的回调中访问params?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在Rails模型的回调中访问params?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个模型的回调,需要根据表单中输入的另一个字段创建一个依赖对象.但是params在回调方法中是未定义的.有没有其他方式来访问它?从表单传递回调方法参数的正确方法是什么?
class User < ActiveRecord::Base
  attr_accessible :name
  has_many :enrollments

  after_create :create_enrollment_log
  private
  def create_enrollment_log
    enrollments.create!(status: 'signed up',started: params[:sign_up_date])
  end
end

解决方法

模型中无法访问参数,即使您将它们作为参数传递,也会被认为是不好的做法,也可能是危险的.

您可以做的是创建虚拟属性并在模型中使用它.

class User < ActiveRecord::Base
 attr_accessible :name,:sign_up_date
 has_many :enrollments

 after_create :create_enrollment_log
 private
 def create_enrollment_log
   enrollments.create!(status: 'signed up',started: sign_up_date)
 end
end

其中sign_up_date是您的虚拟属性

原文链接:https://www.f2er.com/ruby/269702.html

猜你在找的Ruby相关文章