我有以下关系集,仪表板过滤器值有一个名为 filter_type 的列,它的值可以是 1 或 0。
class DashboardFilterValue < ApplicationRecord
belongs_to :dashboard_filter
end
class DashboardFilter < ApplicationRecord
has_many :dashboard_filter_values, dependent: :destroy
accepts_nested_attributes_for :dashboard_filter_values
before_save :check_parameter_length
def check_parameter_length
Rails.logger.info self.dashboard_filter_values.inspect #prints the ActiveRecord::Associations::CollectionProxy
Rails.logger.info self.dashboard_filter_values.where(:filter_type => 0) #does not print anything
end
end
在before_save
回调中,当我使用self.dashboard_filter_values.inspect
时,会打印
ActiveRecord::Associations::CollectionProxy
.
但self.dashboard_filter_values.where(:filter_type => 0)
不打印任何东西,即使有满足条件的记录。
在before_save
回调中,如何使用 where 条件过滤我想要的值。
在这方面的任何帮助都会非常棒。谢谢。